結果

問題 No.484 収穫
ユーザー tanzakutanzaku
提出日時 2017-02-08 23:18:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 802 ms / 3,000 ms
コード長 1,251 bytes
コンパイル時間 3,560 ms
コンパイル使用メモリ 78,240 KB
実行使用メモリ 161,188 KB
最終ジャッジ日時 2024-10-13 13:07:06
合計ジャッジ時間 15,649 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,380 KB
testcase_01 AC 121 ms
40,952 KB
testcase_02 AC 111 ms
39,896 KB
testcase_03 AC 124 ms
41,044 KB
testcase_04 AC 107 ms
40,232 KB
testcase_05 AC 117 ms
41,432 KB
testcase_06 AC 122 ms
41,020 KB
testcase_07 AC 125 ms
41,412 KB
testcase_08 AC 112 ms
40,228 KB
testcase_09 AC 147 ms
42,512 KB
testcase_10 AC 150 ms
42,612 KB
testcase_11 AC 148 ms
42,364 KB
testcase_12 AC 763 ms
160,312 KB
testcase_13 AC 775 ms
160,296 KB
testcase_14 AC 786 ms
160,320 KB
testcase_15 AC 776 ms
160,536 KB
testcase_16 AC 779 ms
160,476 KB
testcase_17 AC 772 ms
160,312 KB
testcase_18 AC 795 ms
161,188 KB
testcase_19 AC 783 ms
160,220 KB
testcase_20 AC 765 ms
160,508 KB
testcase_21 AC 764 ms
160,392 KB
testcase_22 AC 782 ms
160,108 KB
testcase_23 AC 802 ms
160,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;

public class _483 {
	public static void main(String[] args) throws IOException {
		new _483().solve();
	}

	void solve() throws IOException {
		try (final Scanner in = new Scanner(System.in)) {
			int n = in.nextInt();
			A = new int[n];
			for (int i = 0; i < n; i++) {
				A[i] = in.nextInt();
			}
			memo = new int[n][n][2];
			for (int[][] me : memo) for (int[] mo : me) Arrays.fill(mo, -1);
			int ans = INF;
			for (int i = 0; i < n; i++) {
				ans = Math.min(ans, rec(i, i, 0));
			}
			System.out.println(ans);
		}
	}
	
	int[] A;
	final int INF = 1<<30;
	int[][][] memo;
	int rec(int l, int r, int lr) {
		if (l < 0) return INF;
		if (r >= A.length) return INF;
		if (r - l + 1 == A.length) return A[lr == 0 ? l : r];
		if (memo[l][r][lr] != -1) return memo[l][r][lr];
		final int x = lr == 0 ? l : r;
		int ans = INF;
		ans = Math.min(ans, (rec(l - 1, r, 0) + x - l + 1));
		ans = Math.min(ans, (rec(l, r + 1, 1) + r - x + 1));
		ans = Math.max(A[x], ans);
		return memo[l][r][lr] = ans;
	}
	
	// for debug
	static void dump(Object... o) {
		System.err.println(Arrays.deepToString(o));
	}
}
0