結果
問題 | No.484 収穫 |
ユーザー | ei1333333 |
提出日時 | 2017-02-07 09:22:17 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 962 bytes |
コンパイル時間 | 1,376 ms |
コンパイル使用メモリ | 158,688 KB |
実行使用メモリ | 66,216 KB |
最終ジャッジ日時 | 2024-06-06 17:16:30 |
合計ジャッジ時間 | 3,420 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
65,980 KB |
testcase_01 | AC | 37 ms
66,028 KB |
testcase_02 | AC | 37 ms
66,156 KB |
testcase_03 | AC | 36 ms
65,972 KB |
testcase_04 | AC | 37 ms
66,168 KB |
testcase_05 | AC | 36 ms
65,984 KB |
testcase_06 | WA | - |
testcase_07 | AC | 36 ms
66,048 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 59 ms
66,048 KB |
testcase_13 | AC | 59 ms
65,920 KB |
testcase_14 | AC | 59 ms
66,176 KB |
testcase_15 | AC | 57 ms
66,048 KB |
testcase_16 | AC | 56 ms
65,916 KB |
testcase_17 | AC | 57 ms
66,176 KB |
testcase_18 | AC | 56 ms
66,136 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 57 ms
66,176 KB |
testcase_23 | AC | 58 ms
66,036 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long int64; inline void chmin(int64 &a, int64 b) { a = min(a, b); } inline void chmax(int64 &a, int64 b) { a = max(a, b); } const int64 INF = 1LL << 55; int N, A[2003]; int64 dp[2003][2003][2]; int main() { cin >> N; for(int i = 1; i <= N; i++) { cin >> A[i]; } fill_n(**dp, 2003 * 2003 * 2, INF); dp[2][N][0] = A[1]; dp[1][N - 1][1] = A[N]; for(int i = N - 2; i >= 0; i--) { for(int j = 1; j + i <= N; j++) { const int L = j, R = j + i; chmin(dp[L + 1][R][0], dp[L][R][0] + 1); chmin(dp[L + 1][R][0], dp[L][R][1] + j + 1); chmax(dp[L + 1][R][0], A[L]); chmin(dp[L][R - 1][1], dp[L][R][0] + j + 1); chmin(dp[L][R - 1][1], dp[L][R][1] + 1); chmax(dp[L][R - 1][1], A[R]); } } int64 ret = INF; for(int i = 1; i <= N + 1; i++) { chmin(ret, dp[i][i - 1][0]); chmin(ret, dp[i][i - 1][1]); } cout << ret << endl; }