結果
問題 | No.484 収穫 |
ユーザー | 37zigen |
提出日時 | 2017-02-11 14:10:05 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,329 bytes |
コンパイル時間 | 2,925 ms |
コンパイル使用メモリ | 77,656 KB |
実行使用メモリ | 200,244 KB |
最終ジャッジ日時 | 2024-06-09 08:15:37 |
合計ジャッジ時間 | 16,200 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 129 ms
41,108 KB |
testcase_01 | AC | 130 ms
40,900 KB |
testcase_02 | AC | 130 ms
41,284 KB |
testcase_03 | RE | - |
testcase_04 | AC | 130 ms
41,260 KB |
testcase_05 | AC | 130 ms
41,128 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
ソースコード
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; } } // 0左 // 1右 dp[1][N - 1][0] = A[0]; dp[0][N - 2][1] = A[N - 1]; for (int len = N - 2; len >= 1; --len) { for (int left = 0; left < N; ++left) { int right = left + len - 1; 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]); } } } long ans = Long.MAX_VALUE / 10; 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)); } }