結果
問題 | No.2465 Dilated Water Simulation |
ユーザー | ygussany |
提出日時 | 2023-09-08 22:58:40 |
言語 | C (gcc 12.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,478 bytes |
コンパイル時間 | 371 ms |
コンパイル使用メモリ | 33,984 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-26 16:15:41 |
合計ジャッジ時間 | 4,503 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,752 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("Ofast,unroll-loops") #include <stdio.h> void naive(int L, int V[], long long N, int ans[]) { int i, j, k, x; for (i = 2, ans[1] = V[1]; i <= L; i++) ans[i] = 0; for (i = 0, j = 1, k = 2; i < N; i++, j++, k++) { if (j > L) j = 1; if (k > L) k = 1; x = (ans[j] <= V[k] - ans[k])? ans[j]: V[k] - ans[k]; ans[j] -= x; ans[k] += x; for (x = 1; x <= L; x++) printf("%d ", ans[x]); printf("\n"); } } void naive2(int L, int V[], long long N, int ans[]) { int i, j, k, x, prev[200001]; for (i = 2, ans[1] = V[1]; i <= L; i++) ans[i] = 0; for (i = 1; i <= L; i++) prev[i] = 0; for (i = 0, j = 1, k = 2; i < N; i++, j++, k++) { if (j > L) j = 1; if (k > L) k = 1; if (j == 1) { for (x = 1; x <= L; x++) if (ans[x] != prev[x]) break; if (x <= L) { for (x = 1; x <= L; x++) prev[x] = ans[x]; } else break; } x = (ans[j] <= V[k] - ans[k])? ans[j]: V[k] - ans[k]; ans[j] -= x; ans[k] += x; } if (i < N) { N = (N - i) % L; for (i = 0, j = 1, k = 2; i < N; i++, j++, k++) { if (j > L) j = 1; if (k > L) k = 1; x = (ans[j] <= V[k] - ans[k])? ans[j]: V[k] - ans[k]; ans[j] -= x; ans[k] += x; } } } int main() { int i, L, V[200001]; long long N; scanf("%d", &L); for (i = 1; i <= L; i++) scanf("%d", &(V[i])); scanf("%lld", &N); int ans[200001]; naive2(L, V, N, ans); for (i = 1; i <= L; i++) printf("%d ", ans[i]); printf("\n"); fflush(stdout); return 0; }