結果

問題 No.484 収穫
ユーザー 37zigen37zigen
提出日時 2017-02-11 14:20:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,093 ms / 3,000 ms
コード長 1,484 bytes
コンパイル時間 2,354 ms
コンパイル使用メモリ 77,924 KB
実行使用メモリ 225,308 KB
最終ジャッジ日時 2024-06-09 08:18:46
合計ジャッジ時間 16,489 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
54,236 KB
testcase_01 AC 113 ms
53,908 KB
testcase_02 AC 111 ms
54,004 KB
testcase_03 AC 112 ms
54,164 KB
testcase_04 AC 110 ms
54,076 KB
testcase_05 AC 96 ms
52,472 KB
testcase_06 AC 119 ms
54,152 KB
testcase_07 AC 121 ms
53,848 KB
testcase_08 AC 119 ms
54,532 KB
testcase_09 AC 138 ms
55,908 KB
testcase_10 AC 125 ms
55,820 KB
testcase_11 AC 131 ms
56,076 KB
testcase_12 AC 1,027 ms
224,912 KB
testcase_13 AC 1,093 ms
225,308 KB
testcase_14 AC 1,000 ms
225,116 KB
testcase_15 AC 994 ms
224,084 KB
testcase_16 AC 989 ms
224,092 KB
testcase_17 AC 1,011 ms
224,064 KB
testcase_18 AC 998 ms
225,304 KB
testcase_19 AC 1,009 ms
225,288 KB
testcase_20 AC 1,009 ms
225,124 KB
testcase_21 AC 1,018 ms
225,260 KB
testcase_22 AC 1,016 ms
225,016 KB
testcase_23 AC 1,021 ms
225,164 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] = Long.parseLong(sc.next());
		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.min(ans, A[0]);
		if (0 <= N - 2) {
			dp[0][N - 2][1] = A[N - 1];
		} else {
			ans = Math.min(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