摘要: Krypton FactorTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 181Accepted Submission(s): 60Problem... 阅读全文
posted @ 2015-02-13 21:00 daydaycode 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 1 //子集生成,增量构造法 2 3 void print_subset(int n,int *a,int cur) 4 { 5 for(int i=0;i<cur;i++) 6 cout<<a[i]; 7 cout<<endl; 8 int s=cur?... 阅读全文
posted @ 2015-02-13 16:30 daydaycode 阅读(211) 评论(0) 推荐(0) 编辑