結果
問題 | No.2982 Logic Battle |
ユーザー | ygussany |
提出日時 | 2024-12-07 00:06:31 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,041 bytes |
コンパイル時間 | 2,103 ms |
コンパイル使用メモリ | 30,948 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-07 00:06:35 |
合計ジャッジ時間 | 2,448 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
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 | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 22 ms
5,248 KB |
testcase_31 | AC | 1 ms
5,248 KB |
testcase_32 | AC | 22 ms
5,248 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
ソースコード
#include <stdio.h> void chmax(long long *a, long long b) { if (*a < b) *a = b; } int main() { int i, N, A[5001][3]; scanf("%d", &N); for (i = 1; i <= N; i++) scanf("%d %d %d", &(A[i][0]), &(A[i][1]), &(A[i][2])); int j, cur, prev; long long dp[2][3] = {}, tmp[3]; for (i = 1, cur = 1, prev = 0; i <= N; i++, cur ^= 1, prev ^= 1) { dp[cur][0] = 0; dp[cur][1] = 0; dp[cur][2] = 0; for (j = i, tmp[0] = 0, tmp[1] = 0, tmp[2] = 0; j <= N; j++) { tmp[0] += A[i][0]--; tmp[1] += A[i][1]--; tmp[2] += A[i][2]--; if (A[i][0] < 0) A[i][0] = 0; if (A[i][1] < 0) A[i][1] = 0; if (A[i][2] < 0) A[i][2] = 0; } chmax(&(dp[cur][0]), dp[prev][1] + tmp[0]); chmax(&(dp[cur][0]), dp[prev][2] + tmp[0]); chmax(&(dp[cur][1]), dp[prev][0] + tmp[1]); chmax(&(dp[cur][1]), dp[prev][2] + tmp[1]); chmax(&(dp[cur][2]), dp[prev][0] + tmp[2]); chmax(&(dp[cur][2]), dp[prev][1] + tmp[2]); } long long ans = 0; for (i = 0; i < 3; i++) chmax(&ans, dp[prev][i]); printf("%lld\n", ans); fflush(stdout); return 0; }