結果

問題 No.484 収穫
ユーザー 紙ぺーぱー紙ぺーぱー
提出日時 2017-04-20 17:53:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,264 ms / 3,000 ms
コード長 1,052 bytes
コンパイル時間 1,395 ms
コンパイル使用メモリ 167,004 KB
実行使用メモリ 34,320 KB
最終ジャッジ日時 2024-10-13 13:16:26
合計ジャッジ時間 10,536 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 13 ms
6,820 KB
testcase_10 AC 12 ms
6,816 KB
testcase_11 AC 12 ms
6,816 KB
testcase_12 AC 614 ms
33,360 KB
testcase_13 AC 450 ms
34,244 KB
testcase_14 AC 580 ms
33,572 KB
testcase_15 AC 583 ms
34,020 KB
testcase_16 AC 542 ms
33,820 KB
testcase_17 AC 964 ms
34,096 KB
testcase_18 AC 1,264 ms
33,940 KB
testcase_19 AC 738 ms
33,588 KB
testcase_20 AC 734 ms
34,004 KB
testcase_21 AC 748 ms
33,392 KB
testcase_22 AC 547 ms
33,708 KB
testcase_23 AC 553 ms
34,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int n;
int dp[2000][2000][2];
ll a[2000],t[2000];
int dfs(int l,int r,int k){
	if (dp[l][r][k] != -1) return dp[l][r][k];
    if (k == 0)
    {
        int x = dfs(l + 1, r, 0) + 1;
        int y = dfs(l + 1, r, 1) + r - l;
        dp[l][r][k]=min(x,y);
        if (t[l] < dp[l][r][k]) dp[l][r][k] = 1000000000;
    }
    else
    {
        int x = dfs(l, r-1, 1) + 1;
        int y = dfs(l, r-1, 0) + r - l;
        dp[l][r][k]=min(x,y);
        if (t[r] < dp[l][r][k]) dp[l][r][k] = 1000000000;
    }
    return dp[l][r][k];
        	
}
int f(ll x){
	for(int i=0;i<n;i++){
		t[i]=x-a[i];
		if(t[i]<0)return 0;
	}
	for(int i=0;i<n;i++)
		for(int j=i;j<n;j++){
			if(i!=j)dp[i][j][0]=dp[i][j][1]=-1;
			else dp[i][j][0]=dp[i][j][1]=0;
		}
		if(min(dfs(0,n-1,0),dfs(0,n-1,1))<1000000000)return 1;
		else return 0;
}
int main(){
	cin>>n;
	for(int i=0;i<n;i++)cin>>a[i];
	ll l=0,r=10000000000;
	for(int iii=0;iii<40;iii++){
		ll m=(l+r)/2;
		if(f(m))r=m;
		else l=m;
	}
	cout<<r<<endl;
}
0