結果
問題 | No.1935 Water Simulation |
ユーザー | HIcoder |
提出日時 | 2023-07-18 18:22:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 1,866 bytes |
コンパイル時間 | 1,352 ms |
コンパイル使用メモリ | 117,488 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-18 17:46:14 |
合計ジャッジ時間 | 2,384 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | AC | 2 ms
5,376 KB |
testcase_31 | AC | 2 ms
5,376 KB |
ソースコード
/* 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; }