結果
問題 | No.1935 Water Simulation |
ユーザー |
|
提出日時 | 2023-07-18 18:22:39 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 27 ms / 2,000 ms |
コード長 | 1,866 bytes |
コンパイル時間 | 1,131 ms |
コンパイル使用メモリ | 114,068 KB |
最終ジャッジ日時 | 2025-02-15 15:38:05 |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 29 |
ソースコード
/* MLE 水の状態が同じでも4の倍数のインデックスが異なるなら別物と区別 */ #include<iostream> #include<set> #include<algorithm> #include<vector> #include<string> #include<set> #include<map> #include<numeric> #include<queue> #include<cmath> #include<tuple> using namespace std; typedef long long ll; const ll INF=1LL<<60; typedef pair<ll,ll> P; typedef pair<int,P> PP; const ll MOD=1e9+7; typedef pair<vector<int>,ll> VECP; vector<int> V(4); VECP func(const VECP& t){ ll idx=t.second; vector<int> res(4); for(int i=0;i<4;i++){ res[i]=t.first[i]; } int w= min(V[(idx+1)%4] - t.first[(idx+1)%4],t.first[idx]); res[idx]=t.first[idx] - w; res[(idx+1)%4]=t.first[(idx+1)%4] + w; return make_pair(res,(idx+1)%4); } /* bool operator<(const VECP& lhs,const VECP& rhs){ if(lhs.first!=rhs.first){ return lhs.first<rhs.first; }else{ return lhs.second<rhs.second; } } */ int main(){ ll N; for(int i=0;i<4;i++){ cin>>V[i]; } cin>>N; vector<VECP> history; map<VECP,int> mp; VECP now=make_pair(vector<int>{V[0],0,0,0},0LL); int sz=0; int offset=-1; while(1){ /* cout<<"sz="<<sz<<endl; for(int v:now){ cout<<v<<' '; } cout<<endl; */ if(sz==N) break; if(mp.count(now)){ offset=mp[now]; ll cyclelen=sz-offset; now=history[((N-mp[now])%cyclelen+mp[now])%history.size()]; break; }else{ mp[now]=sz; history.push_back(now); auto nx=func(now); sz++; now=nx; } } for(int v:now.first){ cout<<v<<' '; } cout<<endl; return 0; }