結果

問題 No.871 かえるのうた
ユーザー FromBooskaFromBooska
提出日時 2023-10-17 11:59:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 1,209 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 98,628 KB
最終ジャッジ日時 2024-09-17 10:10:20
合計ジャッジ時間 5,743 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,948 KB
testcase_01 AC 38 ms
52,008 KB
testcase_02 AC 38 ms
52,404 KB
testcase_03 AC 39 ms
53,420 KB
testcase_04 AC 41 ms
52,440 KB
testcase_05 AC 39 ms
53,288 KB
testcase_06 AC 38 ms
52,276 KB
testcase_07 AC 37 ms
52,088 KB
testcase_08 AC 41 ms
59,440 KB
testcase_09 AC 40 ms
60,020 KB
testcase_10 AC 41 ms
60,444 KB
testcase_11 AC 40 ms
58,696 KB
testcase_12 AC 46 ms
68,900 KB
testcase_13 AC 42 ms
60,000 KB
testcase_14 AC 90 ms
93,352 KB
testcase_15 AC 90 ms
93,312 KB
testcase_16 AC 102 ms
94,364 KB
testcase_17 AC 88 ms
94,964 KB
testcase_18 AC 47 ms
69,712 KB
testcase_19 AC 99 ms
93,556 KB
testcase_20 AC 49 ms
66,496 KB
testcase_21 AC 73 ms
85,428 KB
testcase_22 AC 38 ms
53,444 KB
testcase_23 AC 37 ms
52,592 KB
testcase_24 AC 38 ms
52,508 KB
testcase_25 AC 45 ms
61,124 KB
testcase_26 AC 48 ms
64,964 KB
testcase_27 AC 45 ms
64,864 KB
testcase_28 AC 37 ms
52,560 KB
testcase_29 AC 62 ms
88,176 KB
testcase_30 AC 86 ms
97,788 KB
testcase_31 AC 41 ms
59,368 KB
testcase_32 AC 82 ms
94,700 KB
testcase_33 AC 89 ms
96,444 KB
testcase_34 AC 49 ms
71,256 KB
testcase_35 AC 68 ms
88,796 KB
testcase_36 AC 81 ms
98,628 KB
testcase_37 AC 70 ms
85,648 KB
testcase_38 AC 98 ms
95,012 KB
testcase_39 AC 95 ms
93,272 KB
testcase_40 AC 69 ms
89,172 KB
testcase_41 AC 39 ms
52,412 KB
testcase_42 AC 66 ms
87,872 KB
testcase_43 AC 38 ms
51,880 KB
testcase_44 AC 37 ms
52,888 KB
testcase_45 AC 44 ms
61,276 KB
testcase_46 AC 37 ms
53,768 KB
testcase_47 AC 37 ms
53,020 KB
testcase_48 AC 37 ms
53,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 尺取り法に近い
# left, rightどこまでいけるかを毎回更新しつつ、left_idx, right_idxを動かしていく

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

start_idx = K-1
left = X[start_idx]-A[start_idx]
right = X[start_idx]+A[start_idx]
left_idx = start_idx
right_idx = start_idx
while left_idx >= 0 and right_idx <= N-1:
    improve = False
    # check left
    while left_idx-1 >= 0 and left <= X[left_idx-1] <= right:
        left = min(left, X[left_idx-1]-A[left_idx-1])
        # left をrightから更新することはないはず、なぜならA幅は同じでrightの方が遠いから
        right = max(right, X[left_idx-1]+A[left_idx-1])
        left_idx -= 1
        improve = True
    
    # check right
    while right_idx+1 <= N-1 and left <= X[right_idx+1] <= right:
        left = min(left, X[right_idx+1]-A[right_idx+1])
        right = max(right, X[right_idx+1]+A[right_idx+1])
        right_idx += 1
        improve = True
        
    #print('left', left, 'right', right, 'left_idx', left_idx, 'right_idx', right_idx)
    
    if improve == False:
        break

ans = right_idx +1 - left_idx 
print(ans)
0