結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2019-11-29 22:21:40
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 836 bytes
コンパイル時間 1,379 ms
コンパイル使用メモリ 162,060 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-14 05:47:08
合計ジャッジ時間 6,368 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,248 KB
testcase_01 AC 39 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 46 ms
5,376 KB
testcase_04 AC 52 ms
5,376 KB
testcase_05 AC 7 ms
5,376 KB
testcase_06 AC 85 ms
5,376 KB
testcase_07 AC 78 ms
5,376 KB
testcase_08 AC 191 ms
5,376 KB
testcase_09 AC 115 ms
5,376 KB
testcase_10 AC 137 ms
5,376 KB
testcase_11 AC 169 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 55 ms
5,376 KB
testcase_18 AC 34 ms
5,376 KB
testcase_19 AC 93 ms
5,376 KB
testcase_20 AC 68 ms
5,376 KB
testcase_21 AC 8 ms
5,376 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 79 ms
5,376 KB
testcase_34 AC 139 ms
5,376 KB
testcase_35 AC 126 ms
5,376 KB
testcase_36 AC 28 ms
5,376 KB
testcase_37 AC 79 ms
5,376 KB
testcase_38 AC 80 ms
5,376 KB
testcase_39 AC 148 ms
5,376 KB
testcase_40 AC 157 ms
5,376 KB
testcase_41 AC 160 ms
5,376 KB
testcase_42 AC 122 ms
5,376 KB
testcase_43 AC 168 ms
5,376 KB
testcase_44 AC 55 ms
5,376 KB
testcase_45 AC 167 ms
5,376 KB
testcase_46 AC 16 ms
5,376 KB
testcase_47 AC 65 ms
5,376 KB
testcase_48 AC 48 ms
5,376 KB
testcase_49 AC 57 ms
5,376 KB
testcase_50 AC 69 ms
5,376 KB
testcase_51 AC 86 ms
5,376 KB
testcase_52 AC 85 ms
5,376 KB
testcase_53 AC 144 ms
5,376 KB
testcase_54 AC 30 ms
5,376 KB
testcase_55 AC 6 ms
5,376 KB
testcase_56 AC 109 ms
5,376 KB
testcase_57 AC 72 ms
5,376 KB
testcase_58 AC 2 ms
5,376 KB
testcase_59 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
#define REP(i, n) for(int i = 0; i < int(n); i++)
#define FOR(i,n,m) for(int i = int(n); i < int(m); i++)
using namespace std;
typedef long long ll;
const int MOD = 1e9 + 7;
const int INF = 1e9 + 6;
const ll LLINF = 1e18 + 1;



int main() {
    int n; cin >> n;
    string s; cin >> s;
    vector<int> a(n);
    vector<ll> sum(n + 1), enemy(n + 1);
    sum[0] = 0;
    enemy[0] = 0;
    REP(i, n) {
        cin >> a[i];
        sum[i + 1] = sum[i] + a[i];
        enemy[i + 1] = enemy[i];
        if (s[i] == 'E') enemy[i + 1]++;
    }
    int q; cin >> q;
    REP(i, q) {
        int k; cin >> k;
        ll ans = 0;
        REP(j, n) {
            ans = max(ans,enemy[upper_bound(sum.begin(), sum.end(), k + sum[j]) - sum.begin() - 1] - enemy[j]);
        }
        cout << ans << endl;
    }
    return 0;
}
0