2012年6月9日
摘要: #include <iostream>#include<fstream>#include<cstring>using namespace std;ifstream infile;ofstream outfile;long long dp[40][800];int n,sum;int main(){ infile.open("subset.in"); outfile.open("subset.out"); infile>>n; //cin>>n; sum = (n+1)*n/2; if(sum % 阅读全文
posted @ 2012-06-09 01:21 geeker 阅读(265) 评论(1) 推荐(1) 编辑