結果

問題 No.871 かえるのうた
ユーザー lloyzlloyz
提出日時 2022-04-19 00:20:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 294 ms / 2,000 ms
コード長 772 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 30,848 KB
最終ジャッジ日時 2024-11-30 11:08:47
合計ジャッジ時間 5,443 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 32 ms
11,136 KB
testcase_09 AC 32 ms
11,392 KB
testcase_10 AC 32 ms
10,880 KB
testcase_11 AC 31 ms
11,008 KB
testcase_12 AC 44 ms
13,568 KB
testcase_13 AC 33 ms
11,520 KB
testcase_14 AC 103 ms
26,680 KB
testcase_15 AC 102 ms
28,240 KB
testcase_16 AC 294 ms
29,520 KB
testcase_17 AC 100 ms
26,536 KB
testcase_18 AC 42 ms
13,232 KB
testcase_19 AC 113 ms
28,272 KB
testcase_20 AC 50 ms
12,724 KB
testcase_21 AC 85 ms
17,372 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 32 ms
10,752 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 35 ms
11,264 KB
testcase_26 AC 54 ms
12,672 KB
testcase_27 AC 41 ms
13,056 KB
testcase_28 AC 31 ms
10,752 KB
testcase_29 AC 65 ms
17,820 KB
testcase_30 AC 210 ms
22,312 KB
testcase_31 AC 32 ms
11,136 KB
testcase_32 AC 169 ms
21,944 KB
testcase_33 AC 105 ms
26,640 KB
testcase_34 AC 48 ms
14,868 KB
testcase_35 AC 72 ms
19,364 KB
testcase_36 AC 89 ms
22,364 KB
testcase_37 AC 135 ms
19,624 KB
testcase_38 AC 267 ms
30,848 KB
testcase_39 AC 239 ms
27,444 KB
testcase_40 AC 201 ms
18,972 KB
testcase_41 AC 31 ms
10,880 KB
testcase_42 AC 173 ms
18,976 KB
testcase_43 AC 30 ms
10,880 KB
testcase_44 AC 30 ms
10,752 KB
testcase_45 AC 35 ms
11,264 KB
testcase_46 AC 30 ms
10,752 KB
testcase_47 AC 30 ms
10,880 KB
testcase_48 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect_right
from collections import deque

n, k = map(int, input().split())
k -= 1
X = list(map(int, input().split()))
A = list(map(int, input().split()))

Que = deque([k])
seen = set([k])
left, right = k, k
while Que:
    idx = Que.popleft()
    l, r = X[idx] - A[idx], X[idx] + A[idx]
    lidx = bisect_left(X, l)
    ridx = bisect_right(X, r) - 1
    if lidx < left:
        for i in range(lidx, left):
            if i in seen:
                continue
            seen.add(i)
            Que.append(i)
        left = lidx
    if ridx > right:
        for i in range(right + 1, ridx + 1):
            if i in seen:
                continue
            seen.add(i)
            Que.append(i)
        right = ridx
print(right - left + 1)
0