結果

問題 No.871 かえるのうた
ユーザー FromBooskaFromBooska
提出日時 2023-03-11 09:04:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 1,109 bytes
コンパイル時間 452 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 98,568 KB
最終ジャッジ日時 2024-05-07 16:49:40
合計ジャッジ時間 4,624 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 34 ms
52,096 KB
testcase_03 AC 32 ms
52,096 KB
testcase_04 AC 32 ms
52,352 KB
testcase_05 AC 34 ms
52,096 KB
testcase_06 AC 34 ms
52,096 KB
testcase_07 AC 34 ms
52,224 KB
testcase_08 AC 37 ms
59,392 KB
testcase_09 AC 37 ms
59,648 KB
testcase_10 AC 37 ms
58,624 KB
testcase_11 AC 37 ms
58,496 KB
testcase_12 AC 42 ms
67,328 KB
testcase_13 AC 38 ms
60,288 KB
testcase_14 AC 88 ms
93,524 KB
testcase_15 AC 89 ms
93,428 KB
testcase_16 AC 93 ms
94,156 KB
testcase_17 AC 82 ms
95,160 KB
testcase_18 AC 44 ms
68,480 KB
testcase_19 AC 92 ms
94,204 KB
testcase_20 AC 44 ms
65,024 KB
testcase_21 AC 66 ms
85,888 KB
testcase_22 AC 33 ms
52,328 KB
testcase_23 AC 33 ms
53,008 KB
testcase_24 AC 34 ms
52,996 KB
testcase_25 AC 41 ms
60,856 KB
testcase_26 AC 46 ms
66,036 KB
testcase_27 AC 43 ms
65,896 KB
testcase_28 AC 34 ms
52,092 KB
testcase_29 AC 58 ms
88,268 KB
testcase_30 AC 79 ms
98,028 KB
testcase_31 AC 38 ms
59,620 KB
testcase_32 AC 74 ms
94,776 KB
testcase_33 AC 81 ms
96,484 KB
testcase_34 AC 47 ms
71,088 KB
testcase_35 AC 62 ms
89,016 KB
testcase_36 AC 77 ms
98,568 KB
testcase_37 AC 65 ms
85,148 KB
testcase_38 AC 90 ms
95,048 KB
testcase_39 AC 86 ms
93,836 KB
testcase_40 AC 65 ms
88,704 KB
testcase_41 AC 35 ms
53,792 KB
testcase_42 AC 61 ms
87,956 KB
testcase_43 AC 35 ms
52,276 KB
testcase_44 AC 35 ms
52,496 KB
testcase_45 AC 41 ms
60,476 KB
testcase_46 AC 33 ms
52,952 KB
testcase_47 AC 34 ms
52,548 KB
testcase_48 AC 35 ms
52,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# leftに行けるだけ行く、rightにも行けるだけ行く、両側のマックスを両サイドから更新
# をwhile Trueで繰り返す

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

left_idx = K-1
right_idx = K-1
left_min = X[left_idx]-A[left_idx]
right_max = X[right_idx]+A[right_idx]

while 0 <= left_idx and right_idx < N:
    update = False
    
    # go left
    while left_idx-1 >= 0 and left_min <= X[left_idx-1]:
        left_idx -= 1
        update = True
        left_min = min(left_min, X[left_idx]-A[left_idx])
        right_max = max(right_max, X[left_idx]+A[left_idx])
    
    # go right
    while right_idx+1 < N and X[right_idx+1] <= right_max:
        right_idx += 1
        update = True
        left_min = min(left_min, X[right_idx]-A[right_idx])
        right_max = max(right_max, X[right_idx]+A[right_idx])
    
    #print('update', update, 'left_idx', left_idx, 'right_idx', right_idx, 'left_min', left_min, 'right_max', right_max)
    if update == False:
        break

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