結果
問題 | No.973 余興 |
ユーザー | HIR180 |
提出日時 | 2020-01-17 21:45:16 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,315 ms / 4,000 ms |
コード長 | 1,697 bytes |
コンパイル時間 | 2,839 ms |
コンパイル使用メモリ | 187,416 KB |
実行使用メモリ | 116,992 KB |
最終ジャッジ日時 | 2024-06-25 19:20:47 |
合計ジャッジ時間 | 32,120 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,315 ms
116,736 KB |
testcase_01 | AC | 1,280 ms
116,992 KB |
testcase_02 | AC | 1,275 ms
116,864 KB |
testcase_03 | AC | 1,286 ms
116,864 KB |
testcase_04 | AC | 1,308 ms
116,736 KB |
testcase_05 | AC | 1,264 ms
116,864 KB |
testcase_06 | AC | 1,254 ms
116,864 KB |
testcase_07 | AC | 1,280 ms
116,864 KB |
testcase_08 | AC | 1,252 ms
116,608 KB |
testcase_09 | AC | 1,257 ms
116,864 KB |
testcase_10 | AC | 1,258 ms
114,944 KB |
testcase_11 | AC | 214 ms
73,216 KB |
testcase_12 | AC | 211 ms
73,216 KB |
testcase_13 | AC | 205 ms
72,704 KB |
testcase_14 | AC | 205 ms
72,832 KB |
testcase_15 | AC | 49 ms
27,648 KB |
testcase_16 | AC | 51 ms
27,904 KB |
testcase_17 | AC | 33 ms
22,400 KB |
testcase_18 | AC | 42 ms
24,960 KB |
testcase_19 | AC | 42 ms
25,088 KB |
testcase_20 | AC | 33 ms
22,144 KB |
testcase_21 | AC | 50 ms
27,648 KB |
testcase_22 | AC | 52 ms
27,520 KB |
testcase_23 | AC | 42 ms
25,216 KB |
testcase_24 | AC | 41 ms
24,832 KB |
testcase_25 | AC | 21 ms
17,664 KB |
testcase_26 | AC | 34 ms
22,144 KB |
testcase_27 | AC | 60 ms
29,568 KB |
testcase_28 | AC | 42 ms
25,088 KB |
testcase_29 | AC | 41 ms
24,832 KB |
testcase_30 | AC | 614 ms
110,720 KB |
testcase_31 | AC | 607 ms
110,720 KB |
testcase_32 | AC | 606 ms
110,848 KB |
testcase_33 | AC | 600 ms
110,720 KB |
testcase_34 | AC | 598 ms
110,464 KB |
testcase_35 | AC | 608 ms
110,720 KB |
testcase_36 | AC | 589 ms
109,312 KB |
testcase_37 | AC | 596 ms
109,312 KB |
testcase_38 | AC | 604 ms
110,464 KB |
testcase_39 | AC | 632 ms
110,592 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 | 3 ms
5,376 KB |
testcase_44 | AC | 2 ms
5,376 KB |
testcase_45 | AC | 4 ms
6,144 KB |
testcase_46 | AC | 567 ms
99,200 KB |
testcase_47 | AC | 583 ms
98,816 KB |
testcase_48 | AC | 570 ms
99,072 KB |
testcase_49 | AC | 523 ms
96,512 KB |
testcase_50 | AC | 571 ms
98,816 KB |
testcase_51 | AC | 573 ms
99,072 KB |
testcase_52 | AC | 645 ms
113,920 KB |
testcase_53 | AC | 630 ms
112,768 KB |
testcase_54 | AC | 639 ms
113,664 KB |
testcase_55 | AC | 638 ms
113,792 KB |
ソースコード
#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[L].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"); }