結果

問題 No.973 余興
ユーザー ransewhaleransewhale
提出日時 2020-01-17 23:18:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 399 ms / 4,000 ms
コード長 1,193 bytes
コンパイル時間 1,792 ms
コンパイル使用メモリ 168,960 KB
実行使用メモリ 124,216 KB
最終ジャッジ日時 2024-06-26 00:34:15
合計ジャッジ時間 15,503 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 392 ms
124,012 KB
testcase_01 AC 388 ms
124,204 KB
testcase_02 AC 391 ms
123,904 KB
testcase_03 AC 393 ms
124,068 KB
testcase_04 AC 397 ms
124,024 KB
testcase_05 AC 393 ms
124,028 KB
testcase_06 AC 399 ms
124,012 KB
testcase_07 AC 394 ms
123,884 KB
testcase_08 AC 394 ms
124,004 KB
testcase_09 AC 391 ms
124,132 KB
testcase_10 AC 379 ms
124,024 KB
testcase_11 AC 128 ms
124,068 KB
testcase_12 AC 132 ms
124,096 KB
testcase_13 AC 126 ms
124,012 KB
testcase_14 AC 131 ms
124,012 KB
testcase_15 AC 41 ms
123,996 KB
testcase_16 AC 43 ms
124,084 KB
testcase_17 AC 37 ms
124,016 KB
testcase_18 AC 39 ms
123,956 KB
testcase_19 AC 40 ms
123,976 KB
testcase_20 AC 38 ms
123,992 KB
testcase_21 AC 41 ms
124,028 KB
testcase_22 AC 42 ms
124,060 KB
testcase_23 AC 40 ms
124,056 KB
testcase_24 AC 39 ms
123,948 KB
testcase_25 AC 35 ms
124,104 KB
testcase_26 AC 38 ms
123,972 KB
testcase_27 AC 42 ms
124,016 KB
testcase_28 AC 39 ms
124,016 KB
testcase_29 AC 39 ms
124,064 KB
testcase_30 AC 326 ms
124,108 KB
testcase_31 AC 323 ms
124,068 KB
testcase_32 AC 326 ms
123,940 KB
testcase_33 AC 323 ms
124,072 KB
testcase_34 AC 324 ms
124,004 KB
testcase_35 AC 318 ms
124,216 KB
testcase_36 AC 317 ms
124,048 KB
testcase_37 AC 311 ms
124,188 KB
testcase_38 AC 325 ms
124,004 KB
testcase_39 AC 318 ms
123,900 KB
testcase_40 AC 32 ms
123,972 KB
testcase_41 AC 32 ms
123,840 KB
testcase_42 AC 33 ms
123,984 KB
testcase_43 AC 32 ms
124,004 KB
testcase_44 AC 34 ms
124,004 KB
testcase_45 AC 32 ms
124,128 KB
testcase_46 AC 320 ms
124,048 KB
testcase_47 AC 316 ms
123,980 KB
testcase_48 AC 321 ms
124,152 KB
testcase_49 AC 293 ms
124,012 KB
testcase_50 AC 318 ms
123,900 KB
testcase_51 AC 320 ms
124,096 KB
testcase_52 AC 319 ms
124,036 KB
testcase_53 AC 311 ms
124,156 KB
testcase_54 AC 323 ms
124,004 KB
testcase_55 AC 315 ms
123,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
const int INF = (1<<30);
const ll INFLL = (1ll<<60);
const ll MOD = (ll)(1e9+7);

#define l_ength size

void mul_mod(ll& a, ll b){
	a *= b;
	a %= MOD;
}

void add_mod(ll& a, ll b){
	a = (a<MOD)?a:(a-MOD);
	b = (b<MOD)?b:(b-MOD);
	a += b;
	a = (a<MOD)?a:(a-MOD);
}

int dp[5555][5555];
ll s[5555];

int main(void){
	int i,j,n;
	ll a,x;
	cin >> n >> x;
	fill(dp[0],dp[5555],-1);
	for(i=0; i<n; ++i){
		cin >> a;
		s[i+1] = s[i]+a;
	}
	for(i=0; i<n; ++i){
		for(j=0; j<n; ++j){
			if(!(j+i<n)){
				break;
			}
			if(dp[j][j+i]<0 && dp[j+i][j]<0){
				dp[j][j+i+1] = max(j+i,dp[j][j+i+1]);
				if(j){
					if(dp[j+i][j-1]<0){
						dp[j+i][j-1] = j;
					}else{
						dp[j+i][j-1] = min(j,dp[j+i][j-1]);
					}
				}
			}
			if(!(dp[j][j+i]<0)){
				if(s[j+i+2]-s[dp[j][j+i]+1]<=x){
					dp[j][j+i+1] = max(dp[j][j+i+1],dp[j][j+i]);
				}
			}
			if((!(dp[j+i][j]<0)) && j){
				if(s[dp[j+i][j]] - s[j-1]<=x){
					if(dp[j+i][j-1]<0){
						dp[j+i][j-1] = dp[j+i][j];
					}else{
						dp[j+i][j-1] = min(dp[j+i][j-1],dp[j+i][j]);
					}
				}
			}
		}
	}
	cout << ((dp[0][n-1]<0 && dp[n-1][0]<0)?"B":"A") << endl;
	return 0;
}
0