結果

問題 No.973 余興
ユーザー kmjpkmjp
提出日時 2020-01-18 01:52:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,578 bytes
コンパイル時間 1,691 ms
コンパイル使用メモリ 168,916 KB
実行使用メモリ 275,812 KB
最終ジャッジ日時 2024-06-26 05:29:46
合計ジャッジ時間 65,225 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,243 ms
274,688 KB
testcase_01 AC 2,237 ms
275,044 KB
testcase_02 AC 2,300 ms
274,912 KB
testcase_03 WA -
testcase_04 AC 2,391 ms
275,040 KB
testcase_05 WA -
testcase_06 AC 2,251 ms
275,804 KB
testcase_07 WA -
testcase_08 AC 2,286 ms
274,528 KB
testcase_09 AC 2,285 ms
275,552 KB
testcase_10 WA -
testcase_11 AC 518 ms
134,364 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 496 ms
132,224 KB
testcase_15 AC 65 ms
41,216 KB
testcase_16 AC 67 ms
41,856 KB
testcase_17 WA -
testcase_18 AC 55 ms
37,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 63 ms
41,472 KB
testcase_22 AC 64 ms
41,344 KB
testcase_23 AC 57 ms
37,248 KB
testcase_24 AC 53 ms
36,992 KB
testcase_25 AC 28 ms
25,728 KB
testcase_26 AC 43 ms
32,512 KB
testcase_27 WA -
testcase_28 AC 53 ms
37,376 KB
testcase_29 AC 52 ms
36,992 KB
testcase_30 AC 1,614 ms
230,400 KB
testcase_31 AC 1,639 ms
230,528 KB
testcase_32 AC 1,597 ms
230,528 KB
testcase_33 AC 1,596 ms
230,272 KB
testcase_34 WA -
testcase_35 AC 1,597 ms
230,272 KB
testcase_36 AC 1,554 ms
225,152 KB
testcase_37 AC 1,547 ms
225,152 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 3 ms
5,376 KB
testcase_42 AC 3 ms
5,376 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 5 ms
7,296 KB
testcase_46 AC 1,526 ms
200,704 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 1,325 ms
192,128 KB
testcase_50 AC 1,427 ms
200,064 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 1,927 ms
263,392 KB
testcase_55 AC 1,616 ms
263,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

template<class V, int ME> class BIT {
public:
	V bit[1<<ME];
	V operator()(int e) {if(e<0) return 0;V s=0;e++;while(e) s+=bit[e-1],e-=e&-e; return s;}
	void add(int e,V v) { e++; while(e<=1<<ME) bit[e-1]+=v,e+=e&-e;}
};
BIT<int,13> Rm[5050],Lm[5050];

int N;
ll X,A[5050];
int memo[5050][5050];
int R[5050];
int L[5050];


void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>X;
	FOR(i,N) cin>>A[i];
	
	FOR(i,N+1) {
		L[i]=R[i]=i;
		ll sum=0;
		for(j=i;j<N;j++) {
			sum+=A[j];
			if(sum<=X) R[i]=j+1;
		}
		sum=0;
		
		for(j=i;j>=1;j--) {
			sum+=A[j-1];
			if(sum<=X) L[i]=j-1;
		}
		Lm[i].add(i+1,1);
		Rm[i+1].add(i,1);
	}
	
	for(int len=2;len<=N;len++) {
		for(x=0;x+len<=N;x++) {
			y=Rm[x+len](R[x]);
			y+=Lm[x](x+len)-Lm[x](L[x+len]);
			memo[x][x+len]=y>0;
			if(y==0) {
				Lm[x].add(x+len,1);
				Rm[x+len].add(x,1);
			}
		}
	}
	
	if(memo[0][N]) cout<<"A"<<endl;
	else cout<<"B"<<endl;
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0