結果

問題 No.2982 Logic Battle
ユーザー ygussanyygussany
提出日時 2024-12-07 00:29:27
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 1,406 bytes
コンパイル時間 584 ms
コンパイル使用メモリ 32,256 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-07 00:29:44
合計ジャッジ時間 10,019 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 0 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 518 ms
5,248 KB
testcase_31 AC 1 ms
5,248 KB
testcase_32 AC 459 ms
5,248 KB
testcase_33 AC 481 ms
5,248 KB
testcase_34 AC 463 ms
5,248 KB
testcase_35 AC 463 ms
5,248 KB
testcase_36 AC 479 ms
5,248 KB
testcase_37 AC 459 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

const long long inf = -(1LL << 60);

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, k, jj, kk, cur, prev;
	long long dp[2][3][5003], tmp, tmpp;
	for (j = 0; j < 3; j++) {
		for (k = 0; k <= N; k++) {
			dp[0][j][k] = inf;
			dp[1][j][k] = inf;
		}
	}
	for (i = 1, cur = 1, prev = 0, dp[0][0][0] = 0, dp[0][1][0] = 0, dp[0][2][0] = 0; i <= N; i++, cur ^= 1, prev ^= 1) {
		for (j = 0; j < 3; j++) {
			for (k = 0; k < N; k++) {
				tmp = dp[prev][j][k];
				dp[prev][j][k] = inf;
				
				for (jj = 0; jj < 3; jj++) {
					if (jj == j) continue;
					kk = k + A[i][jj];
					if (kk >= N) chmax(&(dp[cur][jj][N]), tmp + (long long)(kk + kk - (N - i)) * (N - i + 1) / 2);
					else if (kk > 0) chmax(&(dp[cur][jj][kk-1]), tmp + kk);
					else chmax(&(dp[cur][jj][kk]), tmp);
				}
			}
			tmp = dp[prev][j][N];
			dp[prev][j][N] = inf;
			for (jj = 0; jj < 3; jj++) {
				if (jj != j) {
					for (k = i, tmpp = tmp; k <= N; k++) {
						if (A[i][jj] - (k - i) > 0) tmpp += A[i][jj] - (k - i);
						else break;
					}
					chmax(&(dp[cur][jj][N]), tmpp);
				}
			}
		}
	}
	
	long long ans = 0;
	for (j = 0; j < 3; j++) for (k = 0; k <= N; k++) chmax(&ans, dp[prev][j][k]);
	printf("%lld\n", ans);
	fflush(stdout);
	return 0;
}
0