結果

問題 No.871 かえるのうた
ユーザー stngstng
提出日時 2022-07-23 17:36:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 253 ms / 2,000 ms
コード長 620 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 93,136 KB
最終ジャッジ日時 2024-11-30 11:10:26
合計ジャッジ時間 5,842 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,712 KB
testcase_01 AC 43 ms
54,592 KB
testcase_02 AC 43 ms
54,636 KB
testcase_03 AC 44 ms
54,492 KB
testcase_04 AC 44 ms
55,328 KB
testcase_05 AC 45 ms
54,344 KB
testcase_06 AC 44 ms
55,008 KB
testcase_07 AC 45 ms
54,912 KB
testcase_08 AC 54 ms
63,952 KB
testcase_09 AC 54 ms
65,436 KB
testcase_10 AC 58 ms
65,704 KB
testcase_11 AC 47 ms
61,420 KB
testcase_12 AC 64 ms
74,560 KB
testcase_13 AC 60 ms
67,652 KB
testcase_14 AC 94 ms
88,344 KB
testcase_15 AC 96 ms
88,644 KB
testcase_16 AC 253 ms
91,484 KB
testcase_17 AC 91 ms
87,920 KB
testcase_18 AC 55 ms
68,916 KB
testcase_19 AC 128 ms
90,800 KB
testcase_20 AC 76 ms
77,204 KB
testcase_21 AC 116 ms
82,832 KB
testcase_22 AC 45 ms
55,780 KB
testcase_23 AC 43 ms
55,504 KB
testcase_24 AC 44 ms
55,096 KB
testcase_25 AC 82 ms
76,484 KB
testcase_26 AC 98 ms
77,016 KB
testcase_27 AC 59 ms
69,248 KB
testcase_28 AC 43 ms
55,436 KB
testcase_29 AC 68 ms
81,908 KB
testcase_30 AC 183 ms
93,136 KB
testcase_31 AC 50 ms
61,888 KB
testcase_32 AC 166 ms
88,744 KB
testcase_33 AC 112 ms
88,952 KB
testcase_34 AC 56 ms
70,884 KB
testcase_35 AC 86 ms
87,820 KB
testcase_36 AC 87 ms
92,332 KB
testcase_37 AC 144 ms
84,352 KB
testcase_38 AC 222 ms
90,040 KB
testcase_39 AC 197 ms
90,076 KB
testcase_40 AC 158 ms
86,340 KB
testcase_41 AC 44 ms
54,116 KB
testcase_42 AC 146 ms
88,344 KB
testcase_43 AC 45 ms
54,548 KB
testcase_44 AC 45 ms
54,480 KB
testcase_45 AC 74 ms
74,100 KB
testcase_46 AC 45 ms
54,616 KB
testcase_47 AC 44 ms
54,352 KB
testcase_48 AC 43 ms
55,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import bisect

n,k = map(int,input().split())
x = [int(i) for i in input().split()]
a = [int(i) for i in input().split()]

ans = [0]*(n)

d = deque()
d.append(k-1)
l = k-1
r = k-1
ans[k-1] = 1

while len(d):
    tmp = d.popleft()
    pos = x[tmp]
    nl = bisect.bisect_left(x,pos-a[tmp])
    nr = bisect.bisect_right(x,pos+a[tmp])
    for i in range(nl,l):
        if ans[i] == 1:
            break
        d.append(i)
        ans[i] = 1
    for i in range(nr-1,r-1,-1):
        if ans[i] == 1:
            break
        d.append(i)
        ans[i] = 1
    l = nl
    r = nr
print(sum(ans))
0