結果

問題 No.871 かえるのうた
ユーザー AT274_AT274_
提出日時 2019-10-14 21:59:48
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
MLE  
実行時間 -
コード長 563 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 620,244 KB
最終ジャッジ日時 2024-12-24 15:01:32
合計ジャッジ時間 27,854 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
15,744 KB
testcase_01 MLE -
testcase_02 AC 33 ms
15,744 KB
testcase_03 MLE -
testcase_04 AC 34 ms
16,000 KB
testcase_05 WA -
testcase_06 AC 34 ms
16,000 KB
testcase_07 WA -
testcase_08 AC 36 ms
16,128 KB
testcase_09 AC 37 ms
325,416 KB
testcase_10 AC 55 ms
17,828 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 42 ms
11,136 KB
testcase_14 AC 117 ms
27,728 KB
testcase_15 WA -
testcase_16 TLE -
testcase_17 AC 114 ms
26,132 KB
testcase_18 AC 48 ms
13,088 KB
testcase_19 WA -
testcase_20 TLE -
testcase_21 WA -
testcase_22 AC 36 ms
10,496 KB
testcase_23 AC 35 ms
10,496 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 TLE -
testcase_27 WA -
testcase_28 AC 32 ms
10,624 KB
testcase_29 AC 73 ms
17,464 KB
testcase_30 TLE -
testcase_31 WA -
testcase_32 AC 1,858 ms
37,732 KB
testcase_33 WA -
testcase_34 AC 53 ms
14,724 KB
testcase_35 AC 89 ms
18,756 KB
testcase_36 AC 100 ms
21,944 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 WA -
testcase_41 AC 32 ms
10,496 KB
testcase_42 AC 225 ms
17,556 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 34 ms
10,496 KB
testcase_47 AC 34 ms
10,624 KB
testcase_48 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect_right
N, K = map(int, input().split())
X = list(map(int, input().split())) + [10 ** 18]
A = list(map(int, input().split())) + [0]


visited = [0] * N
stack = [K - 1]

while stack:
    fr = stack.pop()
    visited[fr] = 1

    l = bisect_left(X, X[fr] - A[fr])
    r = bisect_right(X, X[fr] + A[fr])

    for to in range(l, fr):
        if visited[to]:
            break
        stack.append(to)

    for to in range(r - 1, fr + 1, -1):
        if visited[to]:
            break
        stack.append(to)

print(sum(visited))
0