摘要:
/** *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=... 阅读全文
摘要:
/* * 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){ ... 阅读全文