結果

問題 No.973 余興
ユーザー HIR180HIR180
提出日時 2020-01-17 21:43:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,697 bytes
コンパイル時間 2,709 ms
コンパイル使用メモリ 188,468 KB
実行使用メモリ 125,828 KB
最終ジャッジ日時 2024-06-25 19:15:56
合計ジャッジ時間 28,281 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 913 ms
124,544 KB
testcase_01 AC 902 ms
124,552 KB
testcase_02 AC 908 ms
124,420 KB
testcase_03 AC 885 ms
123,908 KB
testcase_04 AC 889 ms
123,776 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 872 ms
123,524 KB
testcase_11 AC 215 ms
81,788 KB
testcase_12 AC 215 ms
80,944 KB
testcase_13 WA -
testcase_14 AC 226 ms
81,012 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 22 ms
25,576 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 33 ms
32,232 KB
testcase_23 AC 27 ms
29,384 KB
testcase_24 AC 28 ms
29,412 KB
testcase_25 AC 15 ms
24,508 KB
testcase_26 AC 21 ms
26,028 KB
testcase_27 AC 39 ms
35,248 KB
testcase_28 WA -
testcase_29 AC 26 ms
28,628 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 600 ms
124,164 KB
testcase_35 AC 602 ms
124,160 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 598 ms
124,296 KB
testcase_39 WA -
testcase_40 AC 2 ms
7,764 KB
testcase_41 AC 2 ms
7,760 KB
testcase_42 AC 3 ms
7,760 KB
testcase_43 WA -
testcase_44 AC 3 ms
7,892 KB
testcase_45 WA -
testcase_46 AC 506 ms
124,680 KB
testcase_47 WA -
testcase_48 AC 504 ms
124,672 KB
testcase_49 WA -
testcase_50 AC 490 ms
123,780 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 737 ms
123,400 KB
testcase_54 AC 754 ms
124,672 KB
testcase_55 AC 741 ms
124,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
typedef long long ll;
typedef pair<int,int> P;
typedef pair<int,P> P1;
typedef pair<P,P> P2;
#define pu push
#define pb push_back
#define mp make_pair
#define eps 1e-7
#define INF 1000000000
#define mod 1000000007
#define fi first
#define sc second
#define rep(i,x) for(int i=0;i<x;i++)
#define repn(i,x) for(int i=1;i<=x;i++)
#define SORT(x) sort(x.begin(),x.end())
#define ERASE(x) x.erase(unique(x.begin(),x.end()),x.end())
#define POSL(x,v) (lower_bound(x.begin(),x.end(),v)-x.begin())
#define POSU(x,v) (upper_bound(x.begin(),x.end(),v)-x.begin())
int n,x,a[5005];
struct BIT
{
	short bit[5005];
	void add(int i,short x)
	{
		for(int s=i;s<5005;s+=s&-s) bit[s]+=x;
	}
	short sum(int i)
	{
		short res=0;
		for(int s=i;s>0;s-=s&-s) res+=bit[s];
		return res;
	}
}bitL[5005],bitR[5005];

bool dp[5005][5005];
int goL[5005],goR[5005];
int main(){
	scanf("%d%d",&n,&x);
	repn(i,n) scanf("%d",&a[i]);
	repn(i,n){
		goL[i] = n;
		ll sum = 0;
		for(int j=i;j<=n;j++){
			sum += a[j];
			if(sum > x){
				goL[i] = j-1; break;
			}
		}
		goR[i] = 1;
		sum = 0;
		for(int j=i;j>=0;j--){
			sum += a[j];
			if(sum > x){
				goR[i] = j+1; break;
			}
		}
	}
	for(int len=1;len<=n;len++){
		for(int i=1;i+len-1<=n;i++){
			int L = i, R = i+len-1;
			int x = min(goL[L],R-1);
			if(L <= x){
				if(bitR[R].sum(x+1) > bitR[R].sum(L)){
					dp[L][R] = 1; goto nxt;
				}
			}
			x = max(goR[R],L+1);
			if(x <= R){
				if(bitL[L].sum(R-1) > bitL[R].sum(x-2)){
					dp[L][R] = 1; goto nxt;
				}
			}
			bitL[L].add(R,1);
			bitR[R].add(L,1);
			nxt:;
		}
	}
	puts(dp[1][n]?"A":"B");
}
0