結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,144 KB
testcase_01 AC 39 ms
53,888 KB
testcase_02 AC 42 ms
54,016 KB
testcase_03 AC 39 ms
54,400 KB
testcase_04 AC 36 ms
54,144 KB
testcase_05 AC 38 ms
54,144 KB
testcase_06 AC 37 ms
54,272 KB
testcase_07 AC 38 ms
54,144 KB
testcase_08 AC 43 ms
62,208 KB
testcase_09 AC 46 ms
63,616 KB
testcase_10 AC 51 ms
65,280 KB
testcase_11 AC 41 ms
60,672 KB
testcase_12 AC 57 ms
74,240 KB
testcase_13 AC 51 ms
66,432 KB
testcase_14 AC 89 ms
93,184 KB
testcase_15 AC 90 ms
93,388 KB
testcase_16 AC 194 ms
97,312 KB
testcase_17 AC 89 ms
92,876 KB
testcase_18 AC 49 ms
70,016 KB
testcase_19 AC 113 ms
95,160 KB
testcase_20 AC 65 ms
77,052 KB
testcase_21 AC 103 ms
85,504 KB
testcase_22 AC 41 ms
55,060 KB
testcase_23 AC 40 ms
54,604 KB
testcase_24 AC 41 ms
54,776 KB
testcase_25 AC 64 ms
73,576 KB
testcase_26 AC 80 ms
77,520 KB
testcase_27 AC 53 ms
70,016 KB
testcase_28 AC 43 ms
54,272 KB
testcase_29 AC 67 ms
88,704 KB
testcase_30 AC 156 ms
94,980 KB
testcase_31 AC 42 ms
60,672 KB
testcase_32 AC 139 ms
95,232 KB
testcase_33 AC 101 ms
94,000 KB
testcase_34 AC 48 ms
72,064 KB
testcase_35 AC 77 ms
92,800 KB
testcase_36 AC 75 ms
93,856 KB
testcase_37 AC 119 ms
86,912 KB
testcase_38 AC 172 ms
95,524 KB
testcase_39 AC 161 ms
93,060 KB
testcase_40 AC 134 ms
92,976 KB
testcase_41 AC 39 ms
54,108 KB
testcase_42 AC 133 ms
103,108 KB
testcase_43 AC 36 ms
54,372 KB
testcase_44 AC 37 ms
54,464 KB
testcase_45 AC 62 ms
73,124 KB
testcase_46 AC 39 ms
54,016 KB
testcase_47 AC 37 ms
53,760 KB
testcase_48 AC 37 ms
53,888 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