Loading

摘要: /** *Timus 1014.Product of Digits *Accepted *0.001 252 KB */ #include using namespace std; /// int n; long long solve(int num){ if(num==0) return 10; if(num==1) return 1; long long ans=... 阅读全文
posted @ 2017-11-25 15:50 Sherlock-Tang 阅读(169) 评论(0) 推荐(0) 编辑
摘要: /* * AC 0.015 404 KB * 枚举每堆石子选或不选 * O(2^20) */ #include #include #include using namespace std; const int maxn = 128e4; int sto[26]; int n, sum=0; int mindif = 1e9; void dfs(int pos, int tol){ ... 阅读全文
posted @ 2017-11-25 10:28 Sherlock-Tang 阅读(236) 评论(0) 推荐(0) 编辑