結果

問題 No.973 余興
ユーザー leaf_1415leaf_1415
提出日時 2020-01-18 04:06:15
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 998 ms / 4,000 ms
コード長 1,340 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 58,264 KB
実行使用メモリ 236,800 KB
最終ジャッジ日時 2024-06-26 08:30:19
合計ジャッジ時間 32,336 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 992 ms
236,672 KB
testcase_01 AC 989 ms
236,672 KB
testcase_02 AC 996 ms
236,672 KB
testcase_03 AC 991 ms
236,672 KB
testcase_04 AC 997 ms
236,672 KB
testcase_05 AC 998 ms
236,800 KB
testcase_06 AC 988 ms
236,672 KB
testcase_07 AC 986 ms
236,544 KB
testcase_08 AC 991 ms
235,904 KB
testcase_09 AC 994 ms
236,672 KB
testcase_10 AC 949 ms
228,864 KB
testcase_11 AC 336 ms
97,536 KB
testcase_12 AC 339 ms
97,664 KB
testcase_13 AC 333 ms
97,152 KB
testcase_14 AC 334 ms
97,152 KB
testcase_15 AC 44 ms
19,200 KB
testcase_16 AC 45 ms
19,456 KB
testcase_17 AC 30 ms
14,592 KB
testcase_18 AC 38 ms
16,896 KB
testcase_19 AC 38 ms
16,768 KB
testcase_20 AC 30 ms
14,336 KB
testcase_21 AC 46 ms
19,200 KB
testcase_22 AC 45 ms
19,072 KB
testcase_23 AC 37 ms
16,896 KB
testcase_24 AC 37 ms
16,768 KB
testcase_25 AC 19 ms
11,136 KB
testcase_26 AC 28 ms
14,336 KB
testcase_27 AC 51 ms
21,120 KB
testcase_28 AC 36 ms
16,896 KB
testcase_29 AC 36 ms
16,640 KB
testcase_30 AC 907 ms
236,672 KB
testcase_31 AC 896 ms
236,672 KB
testcase_32 AC 896 ms
236,672 KB
testcase_33 AC 896 ms
236,672 KB
testcase_34 AC 890 ms
235,776 KB
testcase_35 AC 889 ms
236,672 KB
testcase_36 AC 873 ms
231,424 KB
testcase_37 AC 878 ms
231,424 KB
testcase_38 AC 883 ms
236,160 KB
testcase_39 AC 892 ms
236,288 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 3 ms
5,376 KB
testcase_46 AC 552 ms
236,672 KB
testcase_47 AC 552 ms
236,800 KB
testcase_48 AC 569 ms
236,672 KB
testcase_49 AC 531 ms
221,056 KB
testcase_50 AC 594 ms
235,264 KB
testcase_51 AC 547 ms
236,672 KB
testcase_52 AC 983 ms
236,672 KB
testcase_53 AC 975 ms
233,088 KB
testcase_54 AC 980 ms
236,672 KB
testcase_55 AC 983 ms
236,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#define llint long long
#define inf 1e18

using namespace std;

llint n, x;
llint a[5005], sum[5005];
llint dp[5005][5005], dpsum[5005][5005];

llint get(llint sl, llint sr, llint tl, llint tr)
{
	return dpsum[tl][tr] - dpsum[tl][sr-1] - dpsum[sl+1][tr] + dpsum[sl+1][sr-1];
}

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> n >> x;
	for(int i = 1; i <= n; i++) cin >> a[i];
	for(int i = 1; i <= n; i++) sum[i] = sum[i-1] + a[i];
	
	for(int l = n; l >= 1; l--){
		for(int r = 1; r <= n; r++){
			if(r-l < 0) continue;
			if(r-l == 0) dp[l][r] = 1;
			else{
				llint res = 0;
				llint p = upper_bound(sum, sum+n+1, sum[l-1]+x) - sum;
				if(p > r) res++;
				else res += get(p, r, l+1, r);
				
				//cout << l << " " << r << " " << p << " " << get(l+1, r, p, r) << endl;
				
				p = lower_bound(sum, sum+n+1, sum[r]-x) - sum;
				if(p < l) res++;
				else res += get(l, p, l, r-1);
				
				//cout << l << " " << r << " " << p << endl;
				
				if(res > 0) dp[l][r] = 0;
				else dp[l][r] = 1;
			}
			dpsum[l][r] = dpsum[l+1][r] + dpsum[l][r-1] - dpsum[l+1][r-1] + dp[l][r];
		}
	}
	
	/*for(int i = 1; i <= n; i++){
		for(int j = 1; j <= n; j++){
			cout <<dp[i][j]<< " ";
		}
		cout << endl;
	}*/
	
	if(dp[1][n]) cout << "B" << endl;
	else cout << "A" << endl;
	
	return 0;
}
0