結果
問題 | No.1935 Water Simulation |
ユーザー | cologne |
提出日時 | 2022-05-13 21:31:38 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,002 bytes |
コンパイル時間 | 3,083 ms |
コンパイル使用メモリ | 256,840 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-22 04:30:35 |
合計ジャッジ時間 | 3,686 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 29 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { vector<int> v(4); vector<int> u(4); long long N; scanf("%d%d%d%d%lld", &v[0], &v[1], &v[2], &v[3], &N); u[0] = v[0]; u[1] = u[2] = u[3] = 0; int st = N % 4; auto op = [&](int x) { u[(x + 1) % 4] += u[x]; u[x] = 0; if (u[(x + 1) % 4] > v[(x + 1) % 4]) { u[x] = u[(x + 1) % 4] - v[(x + 1) % 4]; u[(x + 1) % 4] = v[(x + 1) % 4]; } }; auto r = [&]() { op(st); op((st + 1) % 4); op((st + 2) % 4); op((st + 3) % 4); }; for (int i = 0; i < (N % 4); i++) op(i); N /= 4; map<vector<int>, int> M; int cur = 0; while (N > 0) { if (M.count(u)) { N %= cur - M[u]; break; } M[u] = cur++; r(); --N; } while (N > 0) r(), N--; printf("%d %d %d %d\n", u[0], u[1], u[2], u[3]); }