結果
問題 | No.1935 Water Simulation |
ユーザー | cho435 |
提出日時 | 2022-05-13 23:19:38 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 737 bytes |
コンパイル時間 | 1,906 ms |
コンパイル使用メモリ | 180,472 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-22 03:35:42 |
合計ジャッジ時間 | 4,025 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | WA | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
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 | RE | - |
testcase_18 | RE | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | RE | - |
testcase_25 | WA | - |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | RE | - |
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 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = int64_t; #define rep(i,n) for (int i=0;i<(int)(n);i++) void mv(int x,vector<int> &v,vector<int> &dd){ int cmv=v.at((x+1)%4)-dd.at((x+1)%4); if(dd.at(x)>cmv){ dd.at((x+1)%4)=v.at((x+1)%4); dd.at(x)-=cmv; }else{ dd.at((x+1)%4)+=dd.at(x); dd.at(x)=0; } } int main(){ vector<int> v(4); vector<int> dd(4,0); rep(i,4) cin>>v.at(i); ll n; cin>>n; dd.at(0)=v.at(0); vector<map<vector<int>,int>> st(4); st.at(3)[dd]=-1; rep(i,n){ mv(i%4,v,dd); if(st.at(i%4).count(dd)) i+=(i-st.at(i%4).at(dd))*((n-i-1)/(i-st.at(i%4).at(dd))); st.at(i%4)[dd]=i; } rep(i,4) { cout<<dd.at(i); if(i!=3) cout<<" "; else cout<<endl; } }