結果

問題 No.871 かえるのうた
ユーザー yomo3yomo3
提出日時 2020-02-26 19:16:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 414 ms / 2,000 ms
コード長 507 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,188 KB
最終ジャッジ日時 2024-11-30 11:00:27
合計ジャッジ時間 6,135 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 34 ms
11,264 KB
testcase_09 AC 34 ms
11,264 KB
testcase_10 AC 34 ms
11,008 KB
testcase_11 AC 32 ms
10,880 KB
testcase_12 AC 45 ms
13,440 KB
testcase_13 AC 35 ms
11,392 KB
testcase_14 AC 107 ms
27,976 KB
testcase_15 AC 106 ms
28,092 KB
testcase_16 AC 414 ms
25,916 KB
testcase_17 AC 102 ms
26,432 KB
testcase_18 AC 44 ms
13,212 KB
testcase_19 AC 119 ms
28,188 KB
testcase_20 AC 59 ms
12,068 KB
testcase_21 AC 103 ms
16,268 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 AC 31 ms
10,752 KB
testcase_25 AC 38 ms
11,008 KB
testcase_26 AC 66 ms
12,160 KB
testcase_27 AC 42 ms
12,928 KB
testcase_28 AC 31 ms
10,752 KB
testcase_29 AC 65 ms
17,848 KB
testcase_30 AC 295 ms
22,884 KB
testcase_31 AC 32 ms
11,136 KB
testcase_32 AC 229 ms
21,276 KB
testcase_33 AC 112 ms
26,688 KB
testcase_34 AC 50 ms
14,984 KB
testcase_35 AC 74 ms
19,340 KB
testcase_36 AC 89 ms
22,456 KB
testcase_37 AC 180 ms
17,440 KB
testcase_38 AC 377 ms
27,008 KB
testcase_39 AC 324 ms
25,896 KB
testcase_40 AC 258 ms
17,952 KB
testcase_41 AC 32 ms
10,752 KB
testcase_42 AC 251 ms
17,956 KB
testcase_43 AC 32 ms
10,880 KB
testcase_44 AC 32 ms
10,752 KB
testcase_45 AC 37 ms
10,880 KB
testcase_46 AC 32 ms
10,752 KB
testcase_47 AC 32 ms
10,752 KB
testcase_48 AC 32 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