結果

問題 No.871 かえるのうた
ユーザー FromBooskaFromBooska
提出日時 2023-04-19 19:54:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 952 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 98,560 KB
最終ジャッジ日時 2024-05-07 16:49:53
合計ジャッジ時間 4,846 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 38 ms
52,344 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 38 ms
52,480 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 37 ms
52,224 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 42 ms
59,008 KB
testcase_09 AC 43 ms
59,904 KB
testcase_10 AC 42 ms
58,496 KB
testcase_11 AC 40 ms
58,112 KB
testcase_12 AC 48 ms
67,584 KB
testcase_13 AC 43 ms
60,288 KB
testcase_14 AC 92 ms
93,440 KB
testcase_15 AC 91 ms
93,104 KB
testcase_16 AC 104 ms
94,156 KB
testcase_17 AC 93 ms
95,172 KB
testcase_18 AC 48 ms
68,224 KB
testcase_19 AC 100 ms
93,768 KB
testcase_20 AC 50 ms
64,932 KB
testcase_21 AC 74 ms
85,888 KB
testcase_22 AC 41 ms
51,840 KB
testcase_23 AC 42 ms
52,096 KB
testcase_24 AC 40 ms
51,712 KB
testcase_25 AC 49 ms
60,800 KB
testcase_26 AC 52 ms
63,744 KB
testcase_27 AC 51 ms
64,768 KB
testcase_28 AC 39 ms
52,224 KB
testcase_29 AC 71 ms
86,912 KB
testcase_30 AC 84 ms
98,048 KB
testcase_31 AC 42 ms
59,112 KB
testcase_32 AC 81 ms
94,756 KB
testcase_33 AC 90 ms
96,148 KB
testcase_34 AC 51 ms
70,180 KB
testcase_35 AC 68 ms
88,192 KB
testcase_36 AC 81 ms
98,560 KB
testcase_37 AC 70 ms
85,336 KB
testcase_38 AC 95 ms
95,104 KB
testcase_39 AC 91 ms
93,352 KB
testcase_40 AC 69 ms
88,320 KB
testcase_41 AC 37 ms
52,076 KB
testcase_42 AC 65 ms
87,168 KB
testcase_43 AC 37 ms
52,096 KB
testcase_44 AC 38 ms
51,712 KB
testcase_45 AC 44 ms
59,904 KB
testcase_46 AC 38 ms
51,968 KB
testcase_47 AC 39 ms
51,968 KB
testcase_48 AC 38 ms
52,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# K番から右と左に尺取り法
# 毎回min, maxを更新していき、それに合わせて尺取りを動かす

N, K = map(int, input().split())
X = list(map(int, input().split()))
A = list(map(int, input().split()))

K -= 1
left = K
right = K
mn = X[K]-A[K]
mx = X[K]+A[K]
#print(left, right, mn, mx)

while True:
    improve = False
    
    while left > 0:
        if mn <= X[left-1]:
            left -= 1
            improve = True
            mn = min(mn, X[left]-A[left])
            mx = max(mx, X[left]+A[left])
        else:
            break            
        
    while right < N-1:
        if mx >= X[right+1]:
            right += 1
            improve = True
            mn = min(mn, X[right]-A[right])
            mx = max(mx, X[right]+A[right])
        else:
            break             
    #print('improve', improve, 'left', left, 'right', right)
    if improve == False:
        break
    
ans = right+1-left
print(ans)
0