結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー season1618season1618
提出日時 2019-11-29 22:36:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 832 bytes
コンパイル時間 1,500 ms
コンパイル使用メモリ 167,692 KB
実行使用メモリ 33,708 KB
最終ジャッジ日時 2024-09-14 05:50:58
合計ジャッジ時間 5,094 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,812 KB
testcase_01 AC 18 ms
6,944 KB
testcase_02 AC 5 ms
6,944 KB
testcase_03 AC 20 ms
10,644 KB
testcase_04 AC 26 ms
16,812 KB
testcase_05 AC 6 ms
10,256 KB
testcase_06 AC 40 ms
11,016 KB
testcase_07 AC 37 ms
12,740 KB
testcase_08 AC 100 ms
33,112 KB
testcase_09 AC 58 ms
19,964 KB
testcase_10 AC 67 ms
20,572 KB
testcase_11 AC 105 ms
29,028 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 101 ms
33,708 KB
testcase_18 AC 25 ms
19,384 KB
testcase_19 AC 51 ms
10,848 KB
testcase_20 AC 46 ms
26,836 KB
testcase_21 AC 7 ms
6,944 KB
testcase_22 AC 5 ms
9,104 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 3 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 3 ms
6,940 KB
testcase_29 AC 3 ms
6,940 KB
testcase_30 AC 3 ms
6,940 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 3 ms
6,940 KB
testcase_33 AC 56 ms
29,196 KB
testcase_34 AC 75 ms
21,348 KB
testcase_35 AC 70 ms
22,836 KB
testcase_36 AC 17 ms
11,920 KB
testcase_37 AC 47 ms
24,884 KB
testcase_38 AC 42 ms
11,092 KB
testcase_39 AC 84 ms
23,064 KB
testcase_40 AC 95 ms
24,136 KB
testcase_41 AC 85 ms
23,912 KB
testcase_42 AC 70 ms
26,276 KB
testcase_43 AC 99 ms
24,232 KB
testcase_44 AC 30 ms
6,940 KB
testcase_45 AC 110 ms
32,360 KB
testcase_46 AC 11 ms
6,940 KB
testcase_47 AC 35 ms
8,772 KB
testcase_48 AC 29 ms
20,688 KB
testcase_49 AC 31 ms
9,632 KB
testcase_50 AC 41 ms
19,684 KB
testcase_51 AC 46 ms
16,280 KB
testcase_52 AC 45 ms
15,500 KB
testcase_53 AC 96 ms
32,556 KB
testcase_54 AC 21 ms
15,304 KB
testcase_55 AC 5 ms
6,940 KB
testcase_56 AC 65 ms
21,700 KB
testcase_57 AC 38 ms
13,560 KB
testcase_58 AC 2 ms
6,944 KB
testcase_59 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,x,y) for(int i=x;i<y;i++)
#define range(a) (a).begin(),(a).end()
#define print(A,n) rep(i,0,n){cout<<(i ? " ":"")<<A[i];}cout<<endl;
#define pprint(A,m,n) rep(j,0,m){print(A[j],n);}
const int mod=1e5;
const int size=1e5;
const long inf=1e9;
int main(){
	int N;cin>>N;
	string s;cin>>s;
	int E[N+1];E[0]=0;
	rep(i,1,N+1){
		if(s[i-1]=='E') E[i]=E[i-1]+1;
		else E[i]=E[i-1];
	}
	long A[N+1][N+1];A[0][0]=0; long a;
	rep(i,1,N+1){
		cin>>a;
		A[0][i]=A[0][i-1]+a;
	}rep(i,1,N+1)rep(j,0,N+1-i){
        A[i][j]=A[0][i+j]-A[0][i];
    }
    //pprint(A,N+1,N+1);
	int Q;long k;
    cin>>Q;
	rep(i,0,Q){
		cin>>k;
        int res=0;int id;
        rep(j,0,N+1){
		    id=upper_bound(A[j],A[j]+N+1-j,k)-1-A[j];
            res=max(res,E[j+id]-E[j]);
        }cout<<res<<endl;
	}
}
0