結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
15,744 KB
testcase_01 MLE -
testcase_02 AC 36 ms
15,744 KB
testcase_03 AC 34 ms
432,208 KB
testcase_04 AC 34 ms
15,872 KB
testcase_05 AC 33 ms
66,432 KB
testcase_06 AC 34 ms
15,744 KB
testcase_07 AC 34 ms
268,060 KB
testcase_08 AC 37 ms
16,128 KB
testcase_09 AC 40 ms
61,580 KB
testcase_10 AC 97 ms
16,128 KB
testcase_11 AC 36 ms
172,528 KB
testcase_12 AC 58 ms
18,432 KB
testcase_13 AC 46 ms
388,132 KB
testcase_14 AC 119 ms
32,804 KB
testcase_15 AC 119 ms
27,832 KB
testcase_16 TLE -
testcase_17 AC 116 ms
26,180 KB
testcase_18 AC 49 ms
12,964 KB
testcase_19 AC 244 ms
27,996 KB
testcase_20 TLE -
testcase_21 AC 773 ms
18,548 KB
testcase_22 AC 35 ms
10,496 KB
testcase_23 AC 34 ms
10,496 KB
testcase_24 AC 34 ms
10,496 KB
testcase_25 AC 1,874 ms
15,488 KB
testcase_26 TLE -
testcase_27 AC 49 ms
12,544 KB
testcase_28 AC 33 ms
10,496 KB
testcase_29 AC 73 ms
17,464 KB
testcase_30 TLE -
testcase_31 AC 38 ms
11,008 KB
testcase_32 TLE -
testcase_33 AC 180 ms
25,976 KB
testcase_34 AC 54 ms
14,604 KB
testcase_35 AC 97 ms
19,216 KB
testcase_36 AC 99 ms
21,680 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 AC 226 ms
17,572 KB
testcase_41 AC 35 ms
10,624 KB
testcase_42 AC 372 ms
17,568 KB
testcase_43 AC 36 ms
10,496 KB
testcase_44 AC 34 ms
10,624 KB
testcase_45 AC 37 ms
10,624 KB
testcase_46 AC 33 ms
10,624 KB
testcase_47 AC 35 ms
10,624 KB
testcase_48 AC 34 ms
95,396 KB
権限があれば一括ダウンロードができます

ソースコード

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]:
            continue
        stack.append(to)

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

print(sum(visited))
0