結果

問題 No.973 余興
ユーザー leaf_1415leaf_1415
提出日時 2020-01-18 03:54:59
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,253 bytes
コンパイル時間 576 ms
コンパイル使用メモリ 57,948 KB
実行使用メモリ 236,800 KB
最終ジャッジ日時 2024-06-26 08:14:17
合計ジャッジ時間 31,934 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 977 ms
236,672 KB
testcase_01 AC 980 ms
236,672 KB
testcase_02 AC 983 ms
236,544 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 980 ms
236,672 KB
testcase_06 AC 986 ms
236,672 KB
testcase_07 AC 980 ms
236,544 KB
testcase_08 AC 975 ms
235,904 KB
testcase_09 AC 978 ms
236,800 KB
testcase_10 AC 941 ms
228,864 KB
testcase_11 AC 330 ms
97,664 KB
testcase_12 AC 328 ms
97,664 KB
testcase_13 AC 328 ms
97,024 KB
testcase_14 AC 325 ms
97,024 KB
testcase_15 WA -
testcase_16 AC 45 ms
19,328 KB
testcase_17 AC 29 ms
14,720 KB
testcase_18 AC 36 ms
16,896 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 44 ms
19,200 KB
testcase_22 AC 44 ms
19,200 KB
testcase_23 AC 36 ms
16,896 KB
testcase_24 WA -
testcase_25 AC 18 ms
11,008 KB
testcase_26 AC 29 ms
14,336 KB
testcase_27 AC 51 ms
21,120 KB
testcase_28 AC 37 ms
16,896 KB
testcase_29 WA -
testcase_30 AC 921 ms
236,672 KB
testcase_31 AC 921 ms
236,672 KB
testcase_32 AC 918 ms
236,672 KB
testcase_33 AC 918 ms
236,672 KB
testcase_34 AC 881 ms
235,904 KB
testcase_35 AC 880 ms
236,672 KB
testcase_36 AC 870 ms
231,424 KB
testcase_37 AC 857 ms
231,424 KB
testcase_38 AC 884 ms
236,032 KB
testcase_39 AC 884 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 541 ms
236,544 KB
testcase_47 AC 541 ms
236,672 KB
testcase_48 AC 541 ms
236,672 KB
testcase_49 AC 484 ms
221,056 KB
testcase_50 AC 548 ms
235,392 KB
testcase_51 AC 533 ms
236,672 KB
testcase_52 AC 978 ms
236,672 KB
testcase_53 AC 964 ms
233,088 KB
testcase_54 AC 982 ms
236,672 KB
testcase_55 AC 983 ms
236,672 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;
			llint res = 0;
			llint p = upper_bound(sum, sum+n+1, sum[l-1]+x) - sum;
			if(p > r) res++;
			else res += get(l+1, r, p, r);
			
			//cout << l << " " << r << " " << p << 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 << "A" << endl;
	else cout << "B" << endl;
	
	return 0;
}
0