結果
問題 | No.2465 Dilated Water Simulation |
ユーザー | ygussany |
提出日時 | 2023-09-08 23:31:39 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,109 bytes |
コンパイル時間 | 481 ms |
コンパイル使用メモリ | 31,744 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-26 16:56:58 |
合計ジャッジ時間 | 2,850 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 45 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 45 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 45 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | AC | 44 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | AC | 45 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
ソースコード
#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; } } } void naive3(int L, int V[], long long N, int ans[]) { int i, j, k, x, min = 1 << 30; for (i = 2; i <= L; i++) { if (V[i] > V[1]) V[i] = V[1]; if (min > V[i]) min = V[i]; } for (i = 2; V[i] != min; i++); for (; i <= L; i++) V[i] = min; for (i = L; i >= 2 && V[i] == min; i--) ans[i] = 0; for (ans[1] = V[1]; i >= 2; i--) { x = (ans[1] - min <= V[i] - min)? ans[1] - min: V[i] - min; ans[i] = x; ans[1] -= x; } N = N % 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] = {}; if (N >= (long long)L * L * L) naive3(L, V, N, ans); else if (L <= 1000) naive2(L, V, N, ans); for (i = 1; i <= L; i++) printf("%d ", ans[i]); printf("\n"); fflush(stdout); return 0; }