結果
問題 | No.2798 Multiple Chain |
ユーザー | GOTKAKO |
提出日時 | 2024-06-28 23:06:36 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,128 bytes |
コンパイル時間 | 2,414 ms |
コンパイル使用メモリ | 212,476 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-28 23:06:44 |
合計ジャッジ時間 | 5,809 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
8,448 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); long long N; cin >> N; //N = 897612484786617600LL/37*32/31*32/29*27/23*25; //cout << N << endl; vector<int> pf; { int e2 = 0,e3 = 0; while(N%2 == 0) e2++,N /= 2; while(N%3 == 0) e3++,N /= 3; if(e2) pf.push_back(e2); if(e3) pf.push_back(e3); } { long long i=5; while(i*i <= N){ int e = 0; while(N%i == 0) e++,N /= i; if(e) pf.push_back(e); e = 0; i += 2; while(N%i == 0) e++,N /= i; if(e) pf.push_back(e); i += 4; } if(N != 1) pf.push_back(1); } int answer = 0,n = pf.size(); vector<int> multi(n+1,1); for(int i=1; i<=n; i++){ int now = pf.at(i-1)+1; multi.at(i) = multi.at(i-1)*now; } swap(pf,multi); //まちがえた. unordered_map<long long,int> M; auto dfs = [&](auto dfs,int left,int need) -> int { int &ret = M[left*1001001001LL+need]; answer += ret; if(ret) return ret; for(int i=0; i<n; i++){ int le = left%pf.at(i+1)/pf.at(i),ne = need%pf.at(i+1)/pf.at(i); if(ne > le) return 0; left -= ne*pf.at(i); } answer++; ret++; if(left == 0) return ret; int next = left; vector<int> Left(n),add(n); for(int i=0; i<n; i++) Left.at(i) = left%pf.at(i+1)/pf.at(i); if(need) ret += dfs(dfs,left,need); while(true){ int pos = -1; while(++pos != n){ if(add.at(pos) == Left.at(pos)){ next += Left.at(pos)*pf.at(pos); need -= Left.at(pos)*pf.at(pos); add.at(pos) = 0; } else{add.at(pos)++; next -= pf.at(pos),need += pf.at(pos); break;} } if(pos == n) break; ret += dfs(dfs,next,need); } return ret; }; dfs(dfs,pf.at(n)-1,0); cout << answer << endl; }