結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,240 KB
testcase_01 AC 110 ms
40,132 KB
testcase_02 AC 118 ms
41,404 KB
testcase_03 AC 124 ms
41,296 KB
testcase_04 AC 128 ms
41,116 KB
testcase_05 AC 121 ms
41,168 KB
testcase_06 AC 132 ms
41,384 KB
testcase_07 AC 137 ms
42,020 KB
testcase_08 AC 139 ms
40,972 KB
testcase_09 AC 149 ms
42,700 KB
testcase_10 AC 150 ms
42,760 KB
testcase_11 AC 149 ms
43,056 KB
testcase_12 AC 1,226 ms
215,104 KB
testcase_13 AC 1,210 ms
225,136 KB
testcase_14 AC 1,245 ms
225,084 KB
testcase_15 AC 1,194 ms
224,816 KB
testcase_16 AC 1,190 ms
225,324 KB
testcase_17 AC 1,180 ms
225,216 KB
testcase_18 AC 1,145 ms
225,304 KB
testcase_19 AC 1,208 ms
225,264 KB
testcase_20 AC 1,191 ms
225,100 KB
testcase_21 AC 1,195 ms
225,108 KB
testcase_22 AC 1,188 ms
224,824 KB
testcase_23 AC 1,193 ms
225,244 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