結果

問題 No.484 収穫
ユーザー DAyamaCTFDAyamaCTF
提出日時 2017-02-11 13:06:33
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 49 ms / 3,000 ms
コード長 1,278 bytes
コンパイル時間 1,697 ms
コンパイル使用メモリ 158,844 KB
実行使用メモリ 80,532 KB
最終ジャッジ日時 2024-04-21 14:27:36
合計ジャッジ時間 3,099 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
80,384 KB
testcase_01 AC 20 ms
80,476 KB
testcase_02 AC 20 ms
80,464 KB
testcase_03 AC 21 ms
80,488 KB
testcase_04 AC 22 ms
80,460 KB
testcase_05 AC 22 ms
80,332 KB
testcase_06 AC 21 ms
80,344 KB
testcase_07 AC 21 ms
80,368 KB
testcase_08 AC 22 ms
80,512 KB
testcase_09 AC 22 ms
80,512 KB
testcase_10 AC 21 ms
80,464 KB
testcase_11 AC 20 ms
80,428 KB
testcase_12 AC 45 ms
80,488 KB
testcase_13 AC 45 ms
80,516 KB
testcase_14 AC 45 ms
80,532 KB
testcase_15 AC 46 ms
80,448 KB
testcase_16 AC 46 ms
80,508 KB
testcase_17 AC 46 ms
80,344 KB
testcase_18 AC 47 ms
80,444 KB
testcase_19 AC 46 ms
80,504 KB
testcase_20 AC 47 ms
80,424 KB
testcase_21 AC 47 ms
80,504 KB
testcase_22 AC 48 ms
80,496 KB
testcase_23 AC 49 ms
80,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define fi first
#define se second
#define repl(i,a,b) for(int i=(int)(a);i<(int)(b);i++)
#define rep(i,n) repl(i,0,n)
#define each(itr,v) for(auto itr:v)
#define pb(s) push_back(s)
#define mp(a,b) make_pair(a,b)
#define all(x) (x).begin(),(x).end()
#define dbg(x) cout<<#x"="<<x<<endl
#define maxch(x,y) x=max(x,y)
#define minch(x,y) x=min(x,y)
#define uni(x) x.erase(unique(all(x)),x.end())
#define exist(x,y) (find(all(x),y)!=x.end())
#define bcnt(x) bitset<32>(x).count()

typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> P;
typedef pair<P, int> PPI;
typedef pair<ll, ll> PL;
typedef pair<P, ll> PPL;

#define INF 1e15

#define MAX_N 1000

ll n;
ll a[2222];

ll dp[2222][2222][2];

int main(){
	cin.sync_with_stdio(false);
	cin>>n;
	rep(i,n)cin>>a[i];
	rep(i,2222)rep(j,2222)rep(k,2)dp[i][j][k]=INF;
	dp[0][n-1][0]=a[0];
	dp[0][n-1][1]=a[n-1];
	for(int len=n-1;len>0;len--)rep(l,n-len){
		int r=l+len;
		minch(dp[l+1][r][0],max(dp[l][r][0]+1,a[l+1]));
		minch(dp[l+1][r][1],max(dp[l][r][0]+len,a[r]));
		minch(dp[l][r-1][0],max(dp[l][r][1]+len,a[l]));
		minch(dp[l][r-1][1],max(dp[l][r][1]+1,a[r-1]));
	}
	ll res=INF;
	rep(i,n)minch(res,min(dp[i][i][0],dp[i][i][1]));
	cout<<res<<endl;
	return 0;
}
0