結果

問題 No.871 かえるのうた
ユーザー lloyzlloyz
提出日時 2022-04-19 00:19:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 772 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 103,224 KB
最終ジャッジ日時 2024-11-30 11:08:53
合計ジャッジ時間 5,402 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,096 KB
testcase_01 AC 39 ms
54,672 KB
testcase_02 AC 39 ms
54,516 KB
testcase_03 AC 41 ms
54,780 KB
testcase_04 AC 40 ms
54,288 KB
testcase_05 AC 38 ms
54,112 KB
testcase_06 AC 45 ms
54,008 KB
testcase_07 AC 38 ms
54,480 KB
testcase_08 AC 42 ms
63,036 KB
testcase_09 AC 46 ms
64,368 KB
testcase_10 AC 52 ms
65,884 KB
testcase_11 AC 41 ms
61,932 KB
testcase_12 AC 57 ms
75,060 KB
testcase_13 AC 51 ms
66,188 KB
testcase_14 AC 89 ms
92,848 KB
testcase_15 AC 95 ms
93,000 KB
testcase_16 AC 194 ms
97,212 KB
testcase_17 AC 85 ms
92,716 KB
testcase_18 AC 47 ms
71,292 KB
testcase_19 AC 110 ms
95,040 KB
testcase_20 AC 67 ms
77,644 KB
testcase_21 AC 98 ms
85,548 KB
testcase_22 AC 38 ms
55,296 KB
testcase_23 AC 37 ms
55,160 KB
testcase_24 AC 39 ms
54,980 KB
testcase_25 AC 65 ms
73,788 KB
testcase_26 AC 80 ms
77,564 KB
testcase_27 AC 53 ms
70,236 KB
testcase_28 AC 41 ms
55,312 KB
testcase_29 AC 65 ms
89,824 KB
testcase_30 AC 158 ms
94,832 KB
testcase_31 AC 42 ms
61,100 KB
testcase_32 AC 130 ms
94,616 KB
testcase_33 AC 101 ms
94,032 KB
testcase_34 AC 50 ms
73,276 KB
testcase_35 AC 80 ms
92,796 KB
testcase_36 AC 77 ms
93,440 KB
testcase_37 AC 117 ms
87,132 KB
testcase_38 AC 176 ms
95,416 KB
testcase_39 AC 159 ms
92,952 KB
testcase_40 AC 136 ms
92,932 KB
testcase_41 AC 39 ms
54,296 KB
testcase_42 AC 134 ms
103,224 KB
testcase_43 AC 41 ms
53,872 KB
testcase_44 AC 40 ms
54,580 KB
testcase_45 AC 63 ms
73,428 KB
testcase_46 AC 39 ms
55,244 KB
testcase_47 AC 39 ms
55,040 KB
testcase_48 AC 39 ms
54,432 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