結果

問題 No.871 かえるのうた
ユーザー yomo3yomo3
提出日時 2020-02-26 19:16:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 380 ms / 2,000 ms
コード長 507 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 28,244 KB
最終ジャッジ日時 2024-05-07 16:37:40
合計ジャッジ時間 5,658 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 25 ms
10,880 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 29 ms
11,008 KB
testcase_09 AC 28 ms
11,264 KB
testcase_10 AC 28 ms
10,880 KB
testcase_11 AC 28 ms
11,008 KB
testcase_12 AC 38 ms
13,696 KB
testcase_13 AC 31 ms
11,264 KB
testcase_14 AC 99 ms
28,000 KB
testcase_15 AC 92 ms
28,084 KB
testcase_16 AC 380 ms
25,884 KB
testcase_17 AC 89 ms
26,304 KB
testcase_18 AC 38 ms
13,216 KB
testcase_19 AC 109 ms
28,244 KB
testcase_20 AC 53 ms
12,072 KB
testcase_21 AC 93 ms
16,264 KB
testcase_22 AC 26 ms
10,624 KB
testcase_23 AC 27 ms
10,752 KB
testcase_24 AC 26 ms
10,624 KB
testcase_25 AC 33 ms
11,136 KB
testcase_26 AC 60 ms
12,032 KB
testcase_27 AC 37 ms
12,672 KB
testcase_28 AC 27 ms
10,624 KB
testcase_29 AC 57 ms
17,716 KB
testcase_30 AC 265 ms
22,836 KB
testcase_31 AC 28 ms
11,136 KB
testcase_32 AC 208 ms
21,072 KB
testcase_33 AC 96 ms
26,552 KB
testcase_34 AC 42 ms
15,112 KB
testcase_35 AC 66 ms
19,440 KB
testcase_36 AC 77 ms
22,348 KB
testcase_37 AC 158 ms
17,440 KB
testcase_38 AC 334 ms
26,760 KB
testcase_39 AC 287 ms
25,896 KB
testcase_40 AC 228 ms
17,828 KB
testcase_41 AC 27 ms
10,752 KB
testcase_42 AC 228 ms
17,696 KB
testcase_43 AC 27 ms
10,752 KB
testcase_44 AC 26 ms
10,624 KB
testcase_45 AC 30 ms
10,880 KB
testcase_46 AC 28 ms
10,624 KB
testcase_47 AC 26 ms
10,752 KB
testcase_48 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
from bisect import bisect_left, bisect_right

N, K = map(int, input().split())
X = list(map(int, input().split()))
A = list(map(int, input().split()))
K -= 1

ans = 0
q = deque()
q.append(K)
l = r = K
while len(q):
    k = q.popleft()
    ans += 1
    _l = bisect_left(X, X[k] - A[k])
    for i in range(_l, l):
        q.append(i)
    l = min(l, _l)

    _r = bisect_right(X, X[k] + A[k]) - 1
    for i in range(r+1, _r + 1):
        q.append(i)
    r = max(r, _r)

print(ans)
0