結果

問題 No.484 収穫
ユーザー kyawashellkyawashell
提出日時 2018-04-16 14:14:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 72 ms / 3,000 ms
コード長 1,328 bytes
コンパイル時間 2,027 ms
コンパイル使用メモリ 202,356 KB
実行使用メモリ 90,756 KB
最終ジャッジ日時 2024-06-27 04:00:33
合計ジャッジ時間 3,866 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 4 ms
11,976 KB
testcase_10 AC 4 ms
13,880 KB
testcase_11 AC 4 ms
11,956 KB
testcase_12 AC 67 ms
87,680 KB
testcase_13 AC 72 ms
87,516 KB
testcase_14 AC 67 ms
87,652 KB
testcase_15 AC 68 ms
87,740 KB
testcase_16 AC 67 ms
87,700 KB
testcase_17 AC 67 ms
87,720 KB
testcase_18 AC 67 ms
87,556 KB
testcase_19 AC 68 ms
87,656 KB
testcase_20 AC 67 ms
90,744 KB
testcase_21 AC 68 ms
90,640 KB
testcase_22 AC 67 ms
90,712 KB
testcase_23 AC 68 ms
90,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
typedef long long ll;
typedef unsigned long long ull;
using namespace std;
#define pb push_back
int dy[]={0, 0, 1, -1, 1, 1, -1, -1};
int dx[]={1, -1, 0, 0, 1, -1, -1, 1};

#define FOR(i,a,b) for (int i=(a);i<(b);i++)
#define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--)
#define REP(i,n) for (int i=0;i<(n);i++)
#define RREP(i,n) for (int i=(n)-1;i>=0;i--)
#define mp make_pair
#define fi first
#define sc second
ll INF = 1e12;
ll dp[3000][3000][2];
ll n,a[3000];
int main(){
	cin >> n;

	REP(i,n) {
		cin >> a[i];
		REP(j,n) {
			dp[i][j][0] = dp[i][j][1] = INF;
		}
	}

	dp[0][n - 1][true] = a[n - 1];
	dp[0][n - 1][false] = a[0];

	RFOR(k,1,n) {
		for(int i = 0;i + k < n;i++) {
			int j = i + k;

			dp[i + 1][j][false] = min(dp[i + 1][j][false],max(dp[i][j][false] + 1,a[i + 1]));
			dp[i + 1][j][true] = min(dp[i + 1][j][true],max(dp[i][j][false] + j - i,a[j]));
			dp[i][j - 1][false] = min(dp[i][j - 1][false],max(dp[i][j][true] + j - i,a[i]));
			dp[i][j - 1][true] = min(dp[i][j - 1][true],max(dp[i][j][true] + 1,a[j - 1]));
		}
	}

	/*RFOR(k,1,n) {
		REP(i,k + 1) {
			int j = k - 1;
			if(i > j)
				continue;
			cout << dp[i][j][true] << " " << dp[i][j][false] << "   ";
		}
		cout << endl;
	}*/

	ll ans = INF;
	REP(i,n) {
		ans = min(ans,dp[i][i][true]);
	}
	cout << ans << endl;
	return 0;
}
0