結果

問題 No.484 収穫
ユーザー 37zigen37zigen
提出日時 2017-02-11 14:16:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,472 bytes
コンパイル時間 2,672 ms
コンパイル使用メモリ 77,712 KB
実行使用メモリ 210,160 KB
最終ジャッジ日時 2024-06-09 08:15:58
合計ジャッジ時間 16,794 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
54,280 KB
testcase_01 AC 110 ms
54,288 KB
testcase_02 AC 109 ms
53,608 KB
testcase_03 WA -
testcase_04 AC 120 ms
53,672 KB
testcase_05 AC 102 ms
52,944 KB
testcase_06 AC 99 ms
52,504 KB
testcase_07 AC 117 ms
53,720 KB
testcase_08 AC 101 ms
52,608 KB
testcase_09 AC 149 ms
56,076 KB
testcase_10 AC 138 ms
56,268 KB
testcase_11 AC 140 ms
56,392 KB
testcase_12 AC 1,002 ms
209,256 KB
testcase_13 AC 981 ms
209,032 KB
testcase_14 AC 1,022 ms
209,212 KB
testcase_15 AC 979 ms
209,344 KB
testcase_16 AC 950 ms
209,316 KB
testcase_17 AC 993 ms
209,336 KB
testcase_18 AC 993 ms
210,160 KB
testcase_19 AC 993 ms
209,072 KB
testcase_20 AC 973 ms
209,044 KB
testcase_21 AC 1,001 ms
209,200 KB
testcase_22 AC 1,005 ms
209,248 KB
testcase_23 AC 999 ms
209,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static int N;
	static long[] A;

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		N = sc.nextInt();
		A = new long[N];
		for (int i = 0; i < N; ++i)
			A[i] = sc.nextLong();
		long[][][] dp = new long[N][N][2];
		for (int i = 0; i < N; ++i) {
			for (int j = 0; j < N; ++j) {
				for (int k = 0; k < 2; ++k)
					dp[i][j][k] = Long.MAX_VALUE / 10;
			}
		}

		long ans = Long.MAX_VALUE / 10;
		if (1 <= N - 1) {
			dp[1][N - 1][0] = A[0];
		} else
			ans = Math.max(ans, A[0]);
		if (0 <= N - 2) {
			dp[0][N - 2][1] = A[N - 1];
		} else {
			ans = Math.max(ans, A[N - 1]);
		}
		for (int len = N - 2; len >= 1; --len) {
			for (int left = 0; left < N; ++left) {
				int right = left + len - 1;
				if (right >= N)
					break;
				if (left > 0) {
					dp[left][right][0] = Math.min(dp[left - 1][right][1] + len + 1, dp[left - 1][right][0] + 1);
					dp[left][right][0] = Math.max(dp[left][right][0], A[left - 1]);
				}
				if (right + 1 < N) {
					dp[left][right][1] = Math.min(dp[left][right + 1][1] + 1, dp[left][right + 1][0] + len + 1);
					dp[left][right][1] = Math.max(dp[left][right][1], A[right + 1]);
				}
			}
		}
		for (int i = 0; i < N; ++i) {
			ans = Math.min(ans, Math.max(dp[i][i][0] + 1, A[i]));
			ans = Math.min(ans, Math.max(dp[i][i][1] + 1, A[i]));
		}
		System.out.println(ans);
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0