結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー maspymaspy
提出日時 2020-02-02 15:46:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 886 ms / 2,000 ms
コード長 751 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,612 KB
最終ジャッジ日時 2024-09-18 21:02:55
合計ジャッジ時間 39,004 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 466 ms
43,964 KB
testcase_01 AC 497 ms
43,964 KB
testcase_02 AC 513 ms
43,964 KB
testcase_03 AC 546 ms
43,708 KB
testcase_04 AC 644 ms
44,380 KB
testcase_05 AC 612 ms
44,092 KB
testcase_06 AC 574 ms
43,964 KB
testcase_07 AC 595 ms
43,836 KB
testcase_08 AC 886 ms
43,836 KB
testcase_09 AC 700 ms
44,092 KB
testcase_10 AC 696 ms
44,216 KB
testcase_11 AC 805 ms
44,216 KB
testcase_12 AC 451 ms
44,348 KB
testcase_13 AC 453 ms
44,224 KB
testcase_14 AC 459 ms
44,220 KB
testcase_15 AC 454 ms
43,964 KB
testcase_16 AC 458 ms
44,344 KB
testcase_17 AC 837 ms
43,964 KB
testcase_18 AC 680 ms
44,344 KB
testcase_19 AC 547 ms
44,352 KB
testcase_20 AC 780 ms
44,216 KB
testcase_21 AC 459 ms
44,092 KB
testcase_22 AC 527 ms
44,220 KB
testcase_23 AC 436 ms
44,476 KB
testcase_24 AC 456 ms
44,096 KB
testcase_25 AC 462 ms
44,220 KB
testcase_26 AC 451 ms
43,840 KB
testcase_27 AC 450 ms
43,844 KB
testcase_28 AC 449 ms
44,096 KB
testcase_29 AC 445 ms
44,356 KB
testcase_30 AC 442 ms
44,344 KB
testcase_31 AC 437 ms
44,352 KB
testcase_32 AC 463 ms
44,224 KB
testcase_33 AC 834 ms
44,472 KB
testcase_34 AC 733 ms
44,228 KB
testcase_35 AC 755 ms
44,224 KB
testcase_36 AC 572 ms
44,604 KB
testcase_37 AC 756 ms
44,476 KB
testcase_38 AC 558 ms
44,480 KB
testcase_39 AC 723 ms
44,348 KB
testcase_40 AC 800 ms
44,484 KB
testcase_41 AC 813 ms
44,480 KB
testcase_42 AC 789 ms
44,604 KB
testcase_43 AC 748 ms
43,836 KB
testcase_44 AC 487 ms
44,612 KB
testcase_45 AC 880 ms
44,092 KB
testcase_46 AC 468 ms
44,604 KB
testcase_47 AC 527 ms
44,220 KB
testcase_48 AC 723 ms
43,964 KB
testcase_49 AC 566 ms
43,964 KB
testcase_50 AC 713 ms
43,964 KB
testcase_51 AC 745 ms
44,476 KB
testcase_52 AC 643 ms
44,096 KB
testcase_53 AC 871 ms
44,088 KB
testcase_54 AC 633 ms
43,960 KB
testcase_55 AC 460 ms
44,360 KB
testcase_56 AC 733 ms
44,232 KB
testcase_57 AC 630 ms
43,972 KB
testcase_58 AC 453 ms
44,504 KB
testcase_59 AC 455 ms
44,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

import numpy as np

N = int(readline())
S = np.frombuffer(readline().rstrip(),'S1') == b'E'
A = np.array(readline().split(),np.int64)
Q = int(readline())
K = np.array(read().split(),np.int64)

INF = 10 ** 18
min_power = [INF] * (N+1)

for L in range(N):
    power = A[L:].cumsum()
    n_enemy = np.cumsum(S[L:])
    for p,n in zip(power.tolist(), n_enemy.tolist()):
        if min_power[n] > p:
            min_power[n] = p

for n in range(N-1,-1,-1):
    if min_power[n] > min_power[n+1]:
        min_power[n] = min_power[n+1]
min_power[0] = 0

answer = np.searchsorted(min_power, K, 'right') - 1
print('\n'.join(answer.astype(str)))
0