結果

問題 No.973 余興
ユーザー chocoruskchocorusk
提出日時 2020-01-17 22:20:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,660 ms / 4,000 ms
コード長 1,329 bytes
コンパイル時間 1,116 ms
コンパイル使用メモリ 110,192 KB
実行使用メモリ 204,416 KB
最終ジャッジ日時 2024-06-25 21:20:01
合計ジャッジ時間 47,331 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,598 ms
204,416 KB
testcase_01 AC 1,660 ms
204,416 KB
testcase_02 AC 1,597 ms
204,416 KB
testcase_03 AC 1,642 ms
204,288 KB
testcase_04 AC 1,599 ms
204,416 KB
testcase_05 AC 1,660 ms
204,288 KB
testcase_06 AC 1,592 ms
204,416 KB
testcase_07 AC 1,593 ms
204,288 KB
testcase_08 AC 1,641 ms
203,776 KB
testcase_09 AC 1,660 ms
204,416 KB
testcase_10 AC 1,604 ms
198,528 KB
testcase_11 AC 407 ms
92,160 KB
testcase_12 AC 400 ms
92,288 KB
testcase_13 AC 397 ms
91,648 KB
testcase_14 AC 403 ms
91,648 KB
testcase_15 AC 68 ms
21,376 KB
testcase_16 AC 68 ms
21,632 KB
testcase_17 AC 43 ms
16,512 KB
testcase_18 AC 54 ms
18,816 KB
testcase_19 AC 55 ms
18,944 KB
testcase_20 AC 41 ms
16,256 KB
testcase_21 AC 65 ms
21,248 KB
testcase_22 AC 66 ms
21,376 KB
testcase_23 AC 54 ms
18,944 KB
testcase_24 AC 54 ms
18,816 KB
testcase_25 AC 28 ms
12,800 KB
testcase_26 AC 43 ms
16,256 KB
testcase_27 AC 78 ms
23,168 KB
testcase_28 AC 55 ms
18,816 KB
testcase_29 AC 53 ms
18,688 KB
testcase_30 AC 1,190 ms
204,416 KB
testcase_31 AC 1,181 ms
204,288 KB
testcase_32 AC 1,169 ms
204,288 KB
testcase_33 AC 1,158 ms
204,288 KB
testcase_34 AC 1,170 ms
203,776 KB
testcase_35 AC 1,174 ms
204,416 KB
testcase_36 AC 1,156 ms
200,448 KB
testcase_37 AC 1,140 ms
200,320 KB
testcase_38 AC 1,156 ms
203,904 KB
testcase_39 AC 1,153 ms
204,160 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 1,082 ms
204,288 KB
testcase_47 AC 1,059 ms
204,416 KB
testcase_48 AC 1,067 ms
204,416 KB
testcase_49 AC 984 ms
192,384 KB
testcase_50 AC 1,068 ms
203,264 KB
testcase_51 AC 1,066 ms
204,288 KB
testcase_52 AC 1,215 ms
204,416 KB
testcase_53 AC 1,193 ms
201,984 KB
testcase_54 AC 1,231 ms
204,288 KB
testcase_55 AC 1,244 ms
204,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
int dp[5050][5050];
int s1[5050][5050];
int s2[5050][5050];
ll a[5050];
ll s[5050];
int n;
ll x;

int main()
{
	int n;
	ll x;
	cin>>n>>x;
	for(int i=0; i<n; i++){
		cin>>a[i];
		s[i+1]=s[i]+a[i];
	}
	for(int i=0; i<n; i++) dp[i][i]=1;
	for(int d=1; d<n; d++){
		for(int i=0; i+d<n; i++){
			int l=i, r=i+d;
			int k=upper_bound(s, s+n+1, s[l]+x)-s;
			k-=2;
			k=min(k, r-1);
			if(s1[l+1][r]-s1[k+2][r]>0){
				dp[l][r]=0;
				s1[l][r]=s1[l+1][r]+dp[l][r];
				s2[l][r]=s2[l][r-1]+dp[l][r];
				continue;
			}
			k=lower_bound(s, s+n+1, s[r+1]-x)-s;
			k=max(k, l+1);
			if(s2[l][r-1]-s2[l][k-2]>0){
				dp[l][r]=0;
			}else{
				dp[l][r]=1;
			}
			s1[l][r]=s1[l+1][r]+dp[l][r];
			s2[l][r]=s2[l][r-1]+dp[l][r];
		}
	}
	if(dp[0][n-1]) cout<<"B"<<endl;
	else cout<<"A"<<endl;
	return 0;
}
0