結果

問題 No.871 かえるのうた
ユーザー nadarenadare
提出日時 2019-08-30 22:09:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 98,816 KB
最終ジャッジ日時 2024-11-30 10:47:38
合計ジャッジ時間 5,442 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 42 ms
52,352 KB
testcase_03 AC 44 ms
52,352 KB
testcase_04 AC 43 ms
52,352 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 43 ms
52,096 KB
testcase_08 AC 46 ms
60,672 KB
testcase_09 AC 49 ms
62,336 KB
testcase_10 AC 50 ms
62,592 KB
testcase_11 AC 41 ms
58,624 KB
testcase_12 AC 61 ms
72,704 KB
testcase_13 AC 55 ms
64,384 KB
testcase_14 AC 93 ms
92,928 KB
testcase_15 AC 95 ms
93,312 KB
testcase_16 AC 197 ms
95,060 KB
testcase_17 AC 91 ms
92,800 KB
testcase_18 AC 49 ms
67,840 KB
testcase_19 AC 118 ms
94,300 KB
testcase_20 AC 69 ms
76,288 KB
testcase_21 AC 106 ms
85,248 KB
testcase_22 AC 41 ms
52,224 KB
testcase_23 AC 39 ms
51,968 KB
testcase_24 AC 39 ms
52,096 KB
testcase_25 AC 63 ms
69,632 KB
testcase_26 AC 81 ms
76,016 KB
testcase_27 AC 60 ms
68,096 KB
testcase_28 AC 39 ms
52,352 KB
testcase_29 AC 63 ms
87,424 KB
testcase_30 AC 154 ms
98,048 KB
testcase_31 AC 42 ms
59,264 KB
testcase_32 AC 143 ms
94,592 KB
testcase_33 AC 118 ms
96,000 KB
testcase_34 AC 56 ms
70,656 KB
testcase_35 AC 84 ms
92,288 KB
testcase_36 AC 84 ms
98,816 KB
testcase_37 AC 123 ms
86,528 KB
testcase_38 AC 184 ms
95,360 KB
testcase_39 AC 162 ms
93,428 KB
testcase_40 AC 149 ms
92,656 KB
testcase_41 AC 41 ms
52,352 KB
testcase_42 AC 127 ms
92,672 KB
testcase_43 AC 41 ms
52,608 KB
testcase_44 AC 41 ms
52,352 KB
testcase_45 AC 62 ms
70,272 KB
testcase_46 AC 39 ms
52,096 KB
testcase_47 AC 42 ms
52,224 KB
testcase_48 AC 39 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect, bisect_left
def inpl(): return list(map(int, input().split()))

N, K = inpl()
K -= 1
X= inpl()
A = inpl()

l = K
r = K
cl = K + 1
cr = K - 1

while (l < cl) or (cr < r):
    for x in range(cl-1, l-1, -1):
        cl -= 1
        nr = bisect(X, X[x] + A[x]) - 1
        r = min(max(r, nr), N-1)
        nl = bisect_left(X, X[x] - A[x])
        l = max(min(l, nl), 0)
    
    for x in range(cr+1, r+1):
        cr += 1
        nr = bisect(X, X[x] + A[x]) - 1
        r = min(max(r, nr), N-1)
        nl = bisect_left(X, X[x] - A[x])
        l = max(min(l, nl), 0)

print(r-l+1)
0