結果
問題 | No.158 奇妙なお使い |
ユーザー | fumofumofuni |
提出日時 | 2020-12-17 22:13:59 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,889 bytes |
コンパイル時間 | 2,357 ms |
コンパイル使用メモリ | 212,740 KB |
実行使用メモリ | 536,224 KB |
最終ジャッジ日時 | 2024-09-21 08:20:31 |
合計ジャッジ時間 | 22,057 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | MLE | - |
testcase_29 | MLE | - |
testcase_30 | MLE | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:85:15: warning: 'x' is used uninitialized [-Wuninitialized] 85 | rep(i,3){x*=base[i];ll t;cin >> t;x+=t;} | ~^~~~~~~~~ main.cpp:84:10: note: 'x' was declared here 84 | ll b,x;cin >> b; | ^ main.cpp:87:15: warning: 'y' is used uninitialized [-Wuninitialized] 87 | rep(i,3){y*=base[i];ll t;cin >> t;y+=t;} | ~^~~~~~~~~ main.cpp:86:10: note: 'y' was declared here 86 | ll c,y;cin >> c; | ^
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,n) for(ll i=0;i<n;i++) #define repl(i,l,r) for(ll i=(l);i<(r);i++) #define per(i,n) for(ll i=(n)-1;i>=0;i--) #define perl(i,r,l) for(ll i=r-1;i>=l;i--) #define fi first #define se second #define pb push_back #define ins insert #define pqueue(x) priority_queue<x,vector<x>,greater<x>> #define all(x) (x).begin(),(x).end() #define CST(x) cout<<fixed<<setprecision(x) #define vtpl(x,y,z) vector<tuple<x,y,z>> #define rev(x) reverse(x); using ll=long long; using vl=vector<ll>; using vvl=vector<vector<ll>>; using pl=pair<ll,ll>; using vpl=vector<pl>; using vvpl=vector<vpl>; const ll MOD=1000000007; const ll MOD9=998244353; const int inf=1e9+10; const ll INF=4e18; const ll dy[9]={0,1,-1,0,1,1,-1,-1,0}; const ll dx[9]={1,0,0,-1,1,-1,1,-1,0}; template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } ll base[3]={0,101,10001}; vl decode(ll n){ vl ret(3); ret[2]=n%base[2];n/=base[2];ret[1]=n%base[1];n/=base[1];ret[0]=n; return ret; } ll calc(ll hash,ll p){ vl z=decode(hash); ll k=p/1000;ll t=z[0]; z[0]=max(z[0]-k,0LL); p-=(t-z[0])*1000; k=p/100;t=z[1]; z[1]=max(z[1]-k,0LL); p-=(t-z[1])*100; if(p<=z[2]){ z[2]-=p; ll ret=0; rep(i,3){ret*=base[i];ret+=z[i];} return ret; } else return -1; } vl topsort(vvl &g){ ll n=g.size(); vl ans,ind(n); rep(i,n)for(auto e:g[i])ind[e]++; queue<ll> que; rep(i,n)if(!ind[i])que.push(i); while(!que.empty()){ ll v=que.front();que.pop(); ans.pb(v); for(auto nv:g[v]){ ind[nv]--;if(!ind[nv])que.push(nv); } } return ans; } int main(){ ll s=0; rep(i,3){s*=base[i];ll t;cin >> t;s+=t;} ll b,x;cin >> b; rep(i,3){x*=base[i];ll t;cin >> t;x+=t;} ll c,y;cin >> c; rep(i,3){y*=base[i];ll t;cin >> t;y+=t;} vector<bool> seen(base[1]*base[2]*10+10); queue<ll> que; seen[s]=true;que.push(s); vvl g(base[1]*base[2]*10+10); while(!que.empty()){ ll p=que.front();que.pop(); //for(auto x:decode(p))cout << x <<" ";cout << endl; ll k=calc(p,b); if(k!=-1){ k+=x; if(seen[k])continue; que.push(k);seen[k]=true; g[p].pb(k); } k=calc(p,c); if(k!=-1){ k+=y; if(seen[k])continue; que.push(k);seen[k]=true; g[p].pb(k); } } vl ts=topsort(g); vl dist(base[1]*base[2]*10+10); dist[s]=0; for(auto p:ts){ for(auto to:g[p]){ chmax(dist[to],dist[p]+1); } } cout << *max_element(all(dist)) <<endl; }