結果
問題 | No.484 収穫 |
ユーザー | siman |
提出日時 | 2021-09-28 05:50:58 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,854 bytes |
コンパイル時間 | 1,194 ms |
コンパイル使用メモリ | 142,140 KB |
実行使用メモリ | 67,328 KB |
最終ジャッジ日時 | 2024-07-07 04:20:45 |
合計ジャッジ時間 | 2,247 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 17 ms
67,052 KB |
testcase_01 | AC | 18 ms
67,100 KB |
testcase_02 | AC | 18 ms
67,072 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 18 ms
67,036 KB |
testcase_05 | AC | 18 ms
67,100 KB |
testcase_06 | AC | 17 ms
67,072 KB |
testcase_07 | AC | 17 ms
67,176 KB |
testcase_08 | AC | 16 ms
67,072 KB |
testcase_09 | AC | 19 ms
67,180 KB |
testcase_10 | AC | 18 ms
67,112 KB |
testcase_11 | AC | 17 ms
67,232 KB |
testcase_12 | AC | 32 ms
67,292 KB |
testcase_13 | AC | 32 ms
67,072 KB |
testcase_14 | AC | 31 ms
67,200 KB |
testcase_15 | AC | 31 ms
67,072 KB |
testcase_16 | AC | 32 ms
67,072 KB |
testcase_17 | AC | 31 ms
67,200 KB |
testcase_18 | AC | 30 ms
67,200 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 32 ms
67,200 KB |
testcase_23 | AC | 32 ms
67,200 KB |
ソースコード
#include <cassert> #include <cmath> #include <algorithm> #include <iostream> #include <iomanip> #include <limits.h> #include <map> #include <queue> #include <set> #include <string.h> #include <vector> using namespace std; typedef long long ll; ll dp[2][2020][2020]; int main() { int N; cin >> N; vector<ll> A(N); for (int i = 0; i < N; ++i) { cin >> A[i]; } if (N == 1) { cout << A[0] << endl; return 0; } memset(dp, -1, sizeof(dp)); dp[0][1][N - 1] = A[0]; dp[1][0][N - 2] = A[N - 1]; for (int l = 0; l < N; ++l) { for (int r = N - 1; r > l; --r) { if (dp[0][l][r] != -1) { ll next_l_l_time = max(A[l], dp[0][l][r] + 1); if (dp[0][l + 1][r] == -1) { dp[0][l + 1][r] = next_l_l_time; } dp[0][l + 1][r] = min(dp[0][l + 1][r], next_l_l_time); ll next_l_r_time = max(A[r], dp[0][l][r] + r - (l - 1)); if (dp[1][l][r - 1] == -1) { dp[1][l][r - 1] = next_l_r_time; } dp[1][l][r - 1] = min(dp[1][l][r - 1], next_l_r_time); } if (dp[1][l][r] != -1) { ll next_r_l_time = max(A[l], dp[1][l][r] + (r + 1) - l); if (dp[0][l + 1][r] == -1) { dp[0][l + 1][r] = next_r_l_time; } dp[0][l + 1][r] = min(dp[0][l + 1][r], next_r_l_time); ll next_r_r_time = max(A[r], dp[1][l][r] + 1); if (dp[1][l][r - 1] == -1) { dp[1][l][r - 1] = next_r_r_time; } dp[1][l][r - 1] = min(dp[1][l][r - 1], next_r_r_time); } } } ll ans = LLONG_MAX; for (int i = 0; i < N; ++i) { ll time = max(dp[0][i][i], dp[1][i][i]); if (time == -1) continue; // fprintf(stderr, "i: %d, (%lld, %lld)\n", i, dp[0][i][i], dp[1][i][i]); ans = min(ans, max(max(dp[0][i][i], dp[1][i][i]) + 1, A[i])); } cout << ans << endl; return 0; }