結果
問題 | No.1935 Water Simulation |
ユーザー | 👑 Nachia |
提出日時 | 2022-05-13 21:30:01 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,629 bytes |
コンパイル時間 | 874 ms |
コンパイル使用メモリ | 93,788 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-22 04:30:27 |
合計ジャッジ時間 | 1,753 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 1 ms
6,944 KB |
testcase_22 | AC | 1 ms
6,944 KB |
testcase_23 | AC | 2 ms
6,944 KB |
testcase_24 | AC | 1 ms
6,940 KB |
testcase_25 | AC | 1 ms
6,940 KB |
testcase_26 | AC | 1 ms
6,940 KB |
testcase_27 | AC | 2 ms
6,944 KB |
testcase_28 | AC | 1 ms
6,944 KB |
testcase_29 | AC | 2 ms
6,944 KB |
testcase_30 | AC | 2 ms
6,940 KB |
testcase_31 | AC | 1 ms
6,944 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <unordered_map> using namespace std; using i32 = int32_t; using u32 = uint32_t; using i64 = int64_t; using u64 = uint64_t; #define rep(i,n) for(int i=0; i<(int)(n); i++) int hash_4(int a, int b, int c, int d){ b += a * 101; c += b * 101; d += c * 101; return d; } int main(){ unordered_map<int, int> A; int ax,bx,cx,dx; cin >> ax >> bx >> cx >> dx; int a,b,c,d; a = ax; b = c = d = 0; i64 K; cin >> K; i64 k = K / 4; i64 t = 0; A[hash_4(a,b,c,d)] = t; int f; while(k){ t++; k--; f = min(a,bx-b); a -= f; b += f; f = min(b,cx-c); b -= f; c += f; f = min(c,dx-d); c -= f; d += f; f = min(d,ax-a); d -= f; a += f; int id = hash_4(a,b,c,d); if(A.count(id)){ i64 cy = t - A[id]; k %= cy; break; } A[id] = t; } while(k){ t++; k--; int f; f = min(a,bx-b); a -= f; b += f; f = min(b,cx-c); b -= f; c += f; f = min(c,dx-d); c -= f; d += f; f = min(d,ax-a); d -= f; a += f; } K %= 4; if(K){ K--; f = min(a,bx-b); a -= f; b += f; } if(K){ K--; f = min(b,cx-c); b -= f; c += f; } if(K){ K--; f = min(c,dx-d); c -= f; d += f; } if(K){ K--; f = min(d,ax-a); d -= f; a += f; } cout << a << " " << b << " " << c << " " << d << endl; return 0; } struct ios_do_not_sync{ ios_do_not_sync(){ std::ios::sync_with_stdio(false); std::cin.tie(nullptr); } } ios_do_not_sync_instance;