結果

問題 No.871 かえるのうた
ユーザー FromBooskaFromBooska
提出日時 2024-03-12 13:27:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 1,189 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 99,072 KB
最終ジャッジ日時 2024-09-29 22:17:21
合計ジャッジ時間 5,938 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 40 ms
51,712 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 39 ms
52,480 KB
testcase_08 AC 45 ms
58,752 KB
testcase_09 AC 45 ms
59,136 KB
testcase_10 AC 46 ms
58,240 KB
testcase_11 AC 44 ms
58,240 KB
testcase_12 AC 53 ms
67,456 KB
testcase_13 AC 47 ms
60,288 KB
testcase_14 AC 102 ms
93,184 KB
testcase_15 AC 102 ms
93,440 KB
testcase_16 AC 113 ms
94,288 KB
testcase_17 AC 97 ms
94,720 KB
testcase_18 AC 54 ms
67,840 KB
testcase_19 AC 108 ms
94,020 KB
testcase_20 AC 56 ms
65,408 KB
testcase_21 AC 84 ms
85,376 KB
testcase_22 AC 40 ms
52,480 KB
testcase_23 AC 40 ms
52,096 KB
testcase_24 AC 40 ms
52,224 KB
testcase_25 AC 50 ms
60,160 KB
testcase_26 AC 52 ms
64,256 KB
testcase_27 AC 51 ms
64,896 KB
testcase_28 AC 40 ms
52,352 KB
testcase_29 AC 73 ms
86,912 KB
testcase_30 AC 96 ms
97,920 KB
testcase_31 AC 44 ms
59,008 KB
testcase_32 AC 91 ms
94,592 KB
testcase_33 AC 100 ms
96,128 KB
testcase_34 AC 56 ms
69,760 KB
testcase_35 AC 76 ms
88,448 KB
testcase_36 AC 93 ms
99,072 KB
testcase_37 AC 79 ms
84,992 KB
testcase_38 AC 111 ms
95,104 KB
testcase_39 AC 101 ms
93,312 KB
testcase_40 AC 77 ms
88,320 KB
testcase_41 AC 40 ms
51,712 KB
testcase_42 AC 73 ms
86,912 KB
testcase_43 AC 40 ms
51,840 KB
testcase_44 AC 40 ms
51,840 KB
testcase_45 AC 49 ms
60,032 KB
testcase_46 AC 40 ms
51,840 KB
testcase_47 AC 41 ms
52,096 KB
testcase_48 AC 41 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# しゃくとり法に近い、two pointer、left_min, right_max, left_idx, right_idxを管理してwhile使う

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

K -= 1
left_idx = K
right_idx = K
left_min = X[K]-A[K]
right_max = X[K]+A[K]
#print('left_idx', left_idx, 'right_idx', right_idx, 'left_min', left_min, 'right_max', right_max)
while left_idx>0 or right_idx<N-1:
    improve = False
    
    while left_idx-1>=0 and left_min <= X[left_idx-1] <= right_max:
        improve = True
        left_idx -= 1
        left_min = min(left_min, X[left_idx]-A[left_idx])
        right_max = max(right_max, X[left_idx]+A[left_idx])

    while right_idx+1<=N-1 and left_min <= X[right_idx+1] <= right_max:
        improve = True
        right_idx += 1
        left_min = min(left_min, X[right_idx]-A[right_idx])
        right_max = max(right_max, X[right_idx]+A[right_idx])      

    #print('left_idx', left_idx, 'right_idx', right_idx, 'left_min', left_min, 'right_max', right_max, 'improve', improve)
    if improve == False:
        break

#print('left_idx', left_idx, 'right_idx', right_idx)
ans = right_idx+1-left_idx
print(ans)
0