結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー face4face4
提出日時 2019-11-29 22:15:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,047 bytes
コンパイル時間 871 ms
コンパイル使用メモリ 86,932 KB
実行使用メモリ 124,416 KB
最終ジャッジ日時 2024-11-20 23:26:11
合計ジャッジ時間 53,295 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
10,496 KB
testcase_01 AC 121 ms
14,208 KB
testcase_02 AC 173 ms
17,792 KB
testcase_03 AC 445 ms
33,024 KB
testcase_04 AC 989 ms
60,800 KB
testcase_05 AC 413 ms
31,872 KB
testcase_06 AC 516 ms
35,200 KB
testcase_07 AC 618 ms
43,392 KB
testcase_08 TLE -
testcase_09 AC 1,214 ms
70,784 KB
testcase_10 AC 1,321 ms
74,368 KB
testcase_11 TLE -
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 TLE -
testcase_17 AC 366 ms
5,248 KB
testcase_18 AC 1,435 ms
71,680 KB
testcase_19 AC 518 ms
33,536 KB
testcase_20 TLE -
testcase_21 AC 22 ms
6,016 KB
testcase_22 AC 363 ms
27,904 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 7 ms
5,248 KB
testcase_25 AC 7 ms
5,248 KB
testcase_26 AC 7 ms
5,248 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 4 ms
5,248 KB
testcase_29 AC 6 ms
5,248 KB
testcase_30 AC 5 ms
5,248 KB
testcase_31 AC 5 ms
5,248 KB
testcase_32 AC 8 ms
5,248 KB
testcase_33 TLE -
testcase_34 AC 1,462 ms
78,208 KB
testcase_35 AC 1,672 ms
84,608 KB
testcase_36 AC 595 ms
38,528 KB
testcase_37 AC 1,945 ms
94,080 KB
testcase_38 AC 526 ms
35,712 KB
testcase_39 AC 1,752 ms
82,944 KB
testcase_40 AC 1,753 ms
87,936 KB
testcase_41 AC 1,718 ms
89,472 KB
testcase_42 AC 1,985 ms
96,000 KB
testcase_43 AC 1,957 ms
90,496 KB
testcase_44 AC 116 ms
12,800 KB
testcase_45 TLE -
testcase_46 AC 31 ms
6,784 KB
testcase_47 AC 332 ms
26,112 KB
testcase_48 AC 1,315 ms
74,112 KB
testcase_49 AC 384 ms
29,696 KB
testcase_50 AC 1,452 ms
71,424 KB
testcase_51 AC 981 ms
58,112 KB
testcase_52 AC 904 ms
54,784 KB
testcase_53 TLE -
testcase_54 AC 898 ms
53,888 KB
testcase_55 AC 24 ms
6,272 KB
testcase_56 AC 1,703 ms
80,768 KB
testcase_57 AC 743 ms
46,720 KB
testcase_58 AC 2 ms
5,248 KB
testcase_59 AC 2 ms
8,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<map>
using namespace std;
typedef long long ll;

int main(){
    int n;
    string s;
    cin >> n >> s;
    vector<int> e(n, 0);
    for(int i = 0; i < n; i++){
        if(i)   e[i] += e[i-1];
        e[i] += s[i]=='E';
    }
    vector<ll> sum(n);
    for(int i = 0; i < n; i++){
        cin >> sum[i];
        if(i)   sum[i] += sum[i-1];
    }
    map<ll,int> m;
    for(int i = 0; i < n; i++){
        for(int j = i; j < n; j++){
            int tmp = e[j] - (i==0 ? 0 : e[i-1]);
            if(tmp == 0)    continue;
            ll p = sum[j] - (i==0 ? 0 : sum[i-1]);
            if(m.count(p))  m[p] = max(m[p], tmp);
            else            m[p] = tmp;
        }
    }
    auto bef = m.begin();
    for(auto it = ++m.begin(); it != m.end(); it++){
        m[it->first] = max(it->second, bef->second);
        bef = it;
    }
    m[0] = 0;
    int q;
    cin >> q;
    while(q-- > 0){
        ll k;
        cin >> k;
        cout << (--m.upper_bound(k))->second << endl;
    }
    return 0;
}
0