摘要: 题目链接我看错题了。。。都是泪啊,不存在3*4^2这种情况。。。系数必须为1。。。 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 #define LL long long 7 int num[60]; 8 LL dp[60][60]; 9 int k,b;10 LL dfs(int pos,int pre,int bound)11 {12 int i,end;13 LL ans = 0;14 if(pos == -1)15 return pre == 0;16 ... 阅读全文
posted @ 2013-10-31 18:21 Naix_x 阅读(180) 评论(0) 推荐(0) 编辑