結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー hiragnhiragn
提出日時 2022-12-02 14:55:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,132 ms / 2,000 ms
コード長 1,130 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-10-09 16:59:10
合計ジャッジ時間 25,760 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
11,136 KB
testcase_01 AC 116 ms
11,008 KB
testcase_02 AC 145 ms
10,880 KB
testcase_03 AC 279 ms
11,136 KB
testcase_04 AC 518 ms
11,264 KB
testcase_05 AC 268 ms
11,008 KB
testcase_06 AC 292 ms
11,136 KB
testcase_07 AC 367 ms
11,136 KB
testcase_08 AC 1,090 ms
11,520 KB
testcase_09 AC 614 ms
11,392 KB
testcase_10 AC 650 ms
11,264 KB
testcase_11 AC 988 ms
11,648 KB
testcase_12 AC 32 ms
10,880 KB
testcase_13 AC 32 ms
10,880 KB
testcase_14 AC 32 ms
10,752 KB
testcase_15 AC 32 ms
10,752 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 1,132 ms
11,392 KB
testcase_18 AC 622 ms
11,136 KB
testcase_19 AC 286 ms
11,136 KB
testcase_20 AC 859 ms
11,136 KB
testcase_21 AC 50 ms
10,880 KB
testcase_22 AC 235 ms
11,008 KB
testcase_23 AC 31 ms
10,880 KB
testcase_24 AC 37 ms
10,880 KB
testcase_25 AC 37 ms
10,880 KB
testcase_26 AC 38 ms
10,880 KB
testcase_27 AC 31 ms
10,880 KB
testcase_28 AC 34 ms
11,008 KB
testcase_29 AC 35 ms
10,880 KB
testcase_30 AC 34 ms
11,008 KB
testcase_31 AC 35 ms
11,008 KB
testcase_32 AC 39 ms
10,880 KB
testcase_33 AC 990 ms
11,264 KB
testcase_34 AC 689 ms
11,264 KB
testcase_35 AC 740 ms
11,264 KB
testcase_36 AC 323 ms
11,008 KB
testcase_37 AC 821 ms
11,008 KB
testcase_38 AC 301 ms
11,136 KB
testcase_39 AC 722 ms
11,264 KB
testcase_40 AC 776 ms
11,392 KB
testcase_41 AC 790 ms
11,392 KB
testcase_42 AC 847 ms
11,392 KB
testcase_43 AC 784 ms
11,264 KB
testcase_44 AC 106 ms
11,264 KB
testcase_45 AC 1,076 ms
11,392 KB
testcase_46 AC 55 ms
11,008 KB
testcase_47 AC 216 ms
11,264 KB
testcase_48 AC 637 ms
11,136 KB
testcase_49 AC 245 ms
11,136 KB
testcase_50 AC 614 ms
11,264 KB
testcase_51 AC 506 ms
11,264 KB
testcase_52 AC 463 ms
11,136 KB
testcase_53 AC 1,107 ms
11,264 KB
testcase_54 AC 464 ms
11,136 KB
testcase_55 AC 51 ms
10,880 KB
testcase_56 AC 711 ms
11,264 KB
testcase_57 AC 400 ms
11,136 KB
testcase_58 AC 31 ms
10,752 KB
testcase_59 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
from collections import defaultdict
import bisect


def main():
    n = int(input())
    s = input()
    a = list(map(int, input().split()))  # 敵,壁の耐久力
    q = int(input())
    k = list(map(int, input().split()))  # 攻撃力

    # 自明な場合
    if s == 'W' * n:
        for _ in range(q):
            print(0)
        exit()

    # 非自明な場合
    enemy = [0]  # 敵数の累積和
    e = 0
    for i in s:
        if i == 'E':
            e += 1
        enemy.append(e)

    acc = [0] + list(accumulate(a))  # 攻撃力の累積和

    # d[x]:敵をx匹倒すのに必要な攻撃力
    offensive_power = defaultdict(lambda: 10 ** 13)
    for left in range(n):
        for right in range(left, n):
            e = enemy[right + 1] - enemy[left]
            op = acc[right + 1] - acc[left]
            offensive_power[e] = min(offensive_power[e], op)

    ans = []
    for i in range(1, s.count('E') + 1):
        ans.append(offensive_power[i])

    for kk in k:
        res = bisect.bisect_right(ans, kk)
        print(res)


if __name__ == "__main__":
    main()
0