結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー ShibuyapShibuyap
提出日時 2019-11-29 22:08:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 1,128 bytes
コンパイル時間 1,804 ms
コンパイル使用メモリ 175,276 KB
実行使用メモリ 37,900 KB
最終ジャッジ日時 2024-09-14 05:44:18
合計ジャッジ時間 7,504 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
6,812 KB
testcase_01 AC 22 ms
7,640 KB
testcase_02 AC 26 ms
8,024 KB
testcase_03 AC 51 ms
12,464 KB
testcase_04 AC 97 ms
20,860 KB
testcase_05 AC 48 ms
11,952 KB
testcase_06 AC 56 ms
12,056 KB
testcase_07 AC 70 ms
20,256 KB
testcase_08 AC 205 ms
37,068 KB
testcase_09 AC 118 ms
36,912 KB
testcase_10 AC 124 ms
36,252 KB
testcase_11 AC 179 ms
36,604 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 149 ms
37,900 KB
testcase_18 AC 117 ms
36,896 KB
testcase_19 AC 54 ms
12,352 KB
testcase_20 AC 162 ms
37,288 KB
testcase_21 AC 8 ms
6,940 KB
testcase_22 AC 42 ms
12,104 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 4 ms
6,940 KB
testcase_25 AC 4 ms
6,944 KB
testcase_26 AC 4 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 4 ms
6,940 KB
testcase_30 AC 3 ms
6,944 KB
testcase_31 AC 3 ms
6,940 KB
testcase_32 AC 4 ms
6,944 KB
testcase_33 AC 183 ms
36,348 KB
testcase_34 AC 130 ms
36,432 KB
testcase_35 AC 140 ms
37,312 KB
testcase_36 AC 62 ms
20,136 KB
testcase_37 AC 153 ms
36,988 KB
testcase_38 AC 56 ms
11,888 KB
testcase_39 AC 138 ms
36,596 KB
testcase_40 AC 146 ms
36,896 KB
testcase_41 AC 149 ms
37,380 KB
testcase_42 AC 158 ms
37,204 KB
testcase_43 AC 151 ms
36,884 KB
testcase_44 AC 22 ms
8,408 KB
testcase_45 AC 199 ms
36,832 KB
testcase_46 AC 9 ms
6,944 KB
testcase_47 AC 40 ms
12,048 KB
testcase_48 AC 123 ms
37,056 KB
testcase_49 AC 46 ms
13,100 KB
testcase_50 AC 120 ms
36,752 KB
testcase_51 AC 94 ms
21,132 KB
testcase_52 AC 87 ms
20,808 KB
testcase_53 AC 207 ms
37,452 KB
testcase_54 AC 84 ms
21,108 KB
testcase_55 AC 7 ms
6,944 KB
testcase_56 AC 137 ms
37,636 KB
testcase_57 AC 76 ms
19,908 KB
testcase_58 AC 2 ms
6,944 KB
testcase_59 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define srep(i,s,t) for (int i = s; i < t; ++i)
#define drep(i,n) for(int i = (n)-1; i >= 0; --i)
using namespace std;
typedef long long int ll;
typedef pair<ll,ll> P;
#define yn {puts("Yes");}else{puts("No");}
#define MAX_N 200005

int main() {
    int n;
    cin >> n;
    string s; cin >> s;
    vector<P> v;
    ll a[n];
    rep(i,n)cin >> a[i];

    rep(i,n){
        ll sum = 0;
        ll cnt = 0;
        srep(j,i,n){
            sum += a[j];
            if(s[j] == 'E')cnt++;
            v.push_back(P(sum, cnt));
        }
    }
    sort(v.begin(), v.end());

    int m = v.size();
    srep(i,1,m){
        if(v[i].second < v[i-1].second){
            v[i].second = v[i-1].second;

        }
    }
    int q; cin >> q;
    rep(loop,q){
        ll x; cin >> x;
        P p;
        p.first = x+1;
        p.second = 0;
        auto ite = lower_bound(v.begin(), v.end(), p);
        if(ite - v.begin() == 0){
            cout << '0' << endl;
        }else{
            cout << v[ite - v.begin() - 1].second << endl;
        }
    }

    return 0;
}
0