結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー mint6421mint6421
提出日時 2019-11-30 22:13:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 731 ms / 2,000 ms
コード長 1,551 bytes
コンパイル時間 1,694 ms
コンパイル使用メモリ 169,580 KB
実行使用メモリ 26,496 KB
最終ジャッジ日時 2024-09-14 06:02:16
合計ジャッジ時間 10,398 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
5,248 KB
testcase_01 AC 34 ms
7,168 KB
testcase_02 AC 8 ms
8,064 KB
testcase_03 AC 55 ms
11,008 KB
testcase_04 AC 81 ms
16,128 KB
testcase_05 AC 13 ms
10,752 KB
testcase_06 AC 101 ms
11,648 KB
testcase_07 AC 107 ms
13,056 KB
testcase_08 AC 436 ms
25,856 KB
testcase_09 AC 182 ms
17,664 KB
testcase_10 AC 227 ms
18,304 KB
testcase_11 AC 392 ms
23,680 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 731 ms
26,496 KB
testcase_18 AC 68 ms
17,920 KB
testcase_19 AC 115 ms
11,264 KB
testcase_20 AC 150 ms
22,144 KB
testcase_21 AC 11 ms
5,376 KB
testcase_22 AC 10 ms
10,240 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 4 ms
5,376 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 4 ms
5,376 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 183 ms
24,064 KB
testcase_34 AC 241 ms
19,072 KB
testcase_35 AC 231 ms
20,096 KB
testcase_36 AC 42 ms
12,160 KB
testcase_37 AC 153 ms
21,504 KB
testcase_38 AC 98 ms
11,520 KB
testcase_39 AC 275 ms
19,968 KB
testcase_40 AC 314 ms
20,480 KB
testcase_41 AC 299 ms
20,992 KB
testcase_42 AC 243 ms
21,760 KB
testcase_43 AC 327 ms
20,992 KB
testcase_44 AC 50 ms
6,656 KB
testcase_45 AC 400 ms
25,600 KB
testcase_46 AC 16 ms
5,376 KB
testcase_47 AC 69 ms
9,600 KB
testcase_48 AC 89 ms
18,432 KB
testcase_49 AC 67 ms
10,368 KB
testcase_50 AC 126 ms
18,048 KB
testcase_51 AC 134 ms
15,616 KB
testcase_52 AC 121 ms
15,104 KB
testcase_53 AC 335 ms
25,984 KB
testcase_54 AC 50 ms
14,848 KB
testcase_55 AC 8 ms
5,376 KB
testcase_56 AC 205 ms
19,584 KB
testcase_57 AC 103 ms
13,696 KB
testcase_58 AC 2 ms
5,376 KB
testcase_59 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


#include<bits/stdc++.h>
using namespace std;
#define inf INT_MAX
#define INF LLONG_MAX
#define ll long long
#define ull unsigned long long
#define M (int)(1e9+7)
#define P pair<int,int>
#define FOR(i,m,n) for(int i=(int)m;i<(int)n;i++)
#define RFOR(i,m,n) for(int i=(int)m;i>=(int)n;i--)
#define rep(i,n) FOR(i,0,n)
#define rrep(i,n) RFOR(i,n,0)
#define all(a) a.begin(),a.end()
const int vx[4] = {0,1,0,-1};
const int vy[4] = {1,0,-1,0};
#define F first
#define S second
#define PB push_back
#define EB emplace_back
#define int ll
#define vi vector<int>
#define IP pair<int,P>
#define PI pair<P,int>
#define PP pair<P,P>
#define Yes(f){cout<<(f?"Yes":"No")<<endl;}
#define YES(f){cout<<(f?"YES":"NO")<<endl;}
int Madd(int x,int y) {return (x+y)%M;}
int Msub(int x,int y) {return (x-y+M)%M;}
int Mmul(int x,int y) {return (x*y)%M;}

int s[2100][2100];

signed main(){
  cin.tie(0);
  ios::sync_with_stdio(false);
  cout<<fixed<<setprecision(20);

  int n;
  cin>>n;
  string t;
  cin>>t;
  vi v(n+1,0);
  FOR(i,1,n+1){
    v[i]+=v[i-1];
    if(t[i-1]=='E') v[i]++;
  }

  vi a(n+1,0);
  FOR(i,1,n+1){
    cin>>a[i];
  
  }

  rep(i,n+1){
    FOR(j,i,n+1){
      s[i][j]=a[j];
      s[i][j]+=s[i][j-1];
    }
  }

  int q;
  cin>>q;
  while(q--){
    int k;
    cin>>k;
    int ans=0;
    rep(i,n+1){
      int l=i,r=n+1;
      while(r-l>1){
        int m=(r+l)/2;
        if(s[i][m]-s[i][i]>k) r=m;
        else l=m;
      }
      //cout<<' '<<l<<endl;
      //cout<<l<<' '<<i<<endl;
      ans=max(ans,v[l]-v[i]);
    }
    cout<<ans<<endl;
  }



}
0