摘要: #include #include long long dp[12][2050];int ms,h,w;bool check(int x){ while(x){ if((x&3)==3) x=x>>2; else if(x&1) return 0; else x=x>>1; } return ... 阅读全文
posted @ 2014-08-31 13:47 Netop 阅读(181) 评论(0) 推荐(0)