結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 AC 26 ms
10,880 KB
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 28 ms
11,136 KB
testcase_09 AC 28 ms
11,264 KB
testcase_10 AC 27 ms
10,880 KB
testcase_11 AC 27 ms
11,136 KB
testcase_12 AC 38 ms
13,696 KB
testcase_13 AC 30 ms
11,648 KB
testcase_14 AC 92 ms
26,740 KB
testcase_15 AC 90 ms
28,236 KB
testcase_16 AC 266 ms
29,076 KB
testcase_17 AC 87 ms
26,520 KB
testcase_18 AC 37 ms
13,232 KB
testcase_19 AC 101 ms
28,328 KB
testcase_20 AC 44 ms
12,724 KB
testcase_21 AC 75 ms
17,372 KB
testcase_22 AC 27 ms
10,880 KB
testcase_23 AC 28 ms
10,752 KB
testcase_24 AC 27 ms
10,752 KB
testcase_25 AC 32 ms
11,392 KB
testcase_26 AC 49 ms
12,800 KB
testcase_27 AC 36 ms
12,928 KB
testcase_28 AC 27 ms
10,880 KB
testcase_29 AC 56 ms
17,868 KB
testcase_30 AC 194 ms
22,408 KB
testcase_31 AC 29 ms
11,264 KB
testcase_32 AC 154 ms
21,924 KB
testcase_33 AC 92 ms
26,704 KB
testcase_34 AC 44 ms
15,128 KB
testcase_35 AC 64 ms
19,364 KB
testcase_36 AC 80 ms
22,488 KB
testcase_37 AC 124 ms
19,760 KB
testcase_38 AC 242 ms
30,876 KB
testcase_39 AC 215 ms
27,248 KB
testcase_40 AC 178 ms
18,976 KB
testcase_41 AC 28 ms
10,752 KB
testcase_42 AC 166 ms
18,976 KB
testcase_43 AC 27 ms
10,880 KB
testcase_44 AC 27 ms
10,880 KB
testcase_45 AC 31 ms
11,264 KB
testcase_46 AC 26 ms
10,880 KB
testcase_47 AC 27 ms
10,752 KB
testcase_48 AC 26 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