結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,972 KB
testcase_01 AC 48 ms
54,776 KB
testcase_02 AC 45 ms
54,708 KB
testcase_03 AC 43 ms
54,460 KB
testcase_04 AC 45 ms
54,264 KB
testcase_05 AC 45 ms
54,080 KB
testcase_06 AC 44 ms
55,244 KB
testcase_07 AC 45 ms
55,248 KB
testcase_08 AC 56 ms
64,932 KB
testcase_09 AC 55 ms
64,480 KB
testcase_10 AC 60 ms
65,152 KB
testcase_11 AC 52 ms
62,244 KB
testcase_12 AC 72 ms
72,612 KB
testcase_13 AC 61 ms
67,492 KB
testcase_14 AC 99 ms
88,200 KB
testcase_15 AC 97 ms
88,380 KB
testcase_16 AC 235 ms
91,848 KB
testcase_17 AC 93 ms
87,900 KB
testcase_18 AC 57 ms
68,608 KB
testcase_19 AC 127 ms
90,320 KB
testcase_20 AC 77 ms
76,672 KB
testcase_21 AC 114 ms
83,456 KB
testcase_22 AC 44 ms
54,528 KB
testcase_23 AC 45 ms
54,144 KB
testcase_24 AC 44 ms
53,504 KB
testcase_25 AC 84 ms
76,672 KB
testcase_26 AC 108 ms
77,008 KB
testcase_27 AC 65 ms
68,992 KB
testcase_28 AC 47 ms
54,400 KB
testcase_29 AC 73 ms
81,536 KB
testcase_30 AC 184 ms
92,556 KB
testcase_31 AC 53 ms
62,168 KB
testcase_32 AC 169 ms
88,488 KB
testcase_33 AC 113 ms
88,784 KB
testcase_34 AC 58 ms
70,260 KB
testcase_35 AC 86 ms
87,600 KB
testcase_36 AC 86 ms
92,612 KB
testcase_37 AC 144 ms
84,028 KB
testcase_38 AC 206 ms
89,372 KB
testcase_39 AC 198 ms
89,912 KB
testcase_40 AC 158 ms
86,280 KB
testcase_41 AC 44 ms
54,004 KB
testcase_42 AC 144 ms
88,340 KB
testcase_43 AC 45 ms
54,864 KB
testcase_44 AC 44 ms
54,128 KB
testcase_45 AC 74 ms
74,872 KB
testcase_46 AC 44 ms
55,464 KB
testcase_47 AC 43 ms
55,468 KB
testcase_48 AC 44 ms
54,868 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])
    #print(nl,nr)
    #exit()
    if nl < l:
        for i in range(nl,l):
            #print(i,"ll")
            if ans[i] == 1:
                break
            d.append(i)
            ans[i] = 1
    if nr > r:
        for i in range(nr-1,r-1,-1):
            #print(i,"?/",nr-1,r)
            if i >= n:
                continue
            #print(i,"rr")
            if ans[i] == 1:
                break
            d.append(i)
            ans[i] = 1
    #exit()
    #print(ans)
    l = nl
    r = nr
print(sum(ans))
#print(ans)
0