結果

問題 No.871 かえるのうた
ユーザー FromBooskaFromBooska
提出日時 2023-02-27 15:40:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,248 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 105,696 KB
最終ジャッジ日時 2024-09-14 22:54:42
合計ジャッジ時間 8,693 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
57,728 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 43 ms
52,224 KB
testcase_05 AC 41 ms
52,608 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 48 ms
60,800 KB
testcase_09 AC 49 ms
61,952 KB
testcase_10 AC 53 ms
63,816 KB
testcase_11 AC 44 ms
58,752 KB
testcase_12 AC 62 ms
74,240 KB
testcase_13 AC 57 ms
65,664 KB
testcase_14 AC 106 ms
97,592 KB
testcase_15 AC 109 ms
97,664 KB
testcase_16 AC 221 ms
99,320 KB
testcase_17 AC 98 ms
97,024 KB
testcase_18 AC 52 ms
69,888 KB
testcase_19 AC 131 ms
99,132 KB
testcase_20 AC 70 ms
76,288 KB
testcase_21 AC 115 ms
88,312 KB
testcase_22 AC 40 ms
52,352 KB
testcase_23 AC 40 ms
52,736 KB
testcase_24 AC 40 ms
52,096 KB
testcase_25 AC 66 ms
71,168 KB
testcase_26 AC 90 ms
76,396 KB
testcase_27 AC 55 ms
69,120 KB
testcase_28 AC 41 ms
52,352 KB
testcase_29 AC 72 ms
92,596 KB
testcase_30 AC 205 ms
99,840 KB
testcase_31 AC 46 ms
59,520 KB
testcase_32 AC 239 ms
99,608 KB
testcase_33 AC 109 ms
98,560 KB
testcase_34 AC 54 ms
72,704 KB
testcase_35 AC 88 ms
97,564 KB
testcase_36 AC 88 ms
98,944 KB
testcase_37 AC 186 ms
89,664 KB
testcase_38 AC 330 ms
97,436 KB
testcase_39 AC 285 ms
96,896 KB
testcase_40 TLE -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# deque案TLEした
# TLEするのはAが大きくて、あまりに多くの点をチェック、appendするからだろう
# その問題はグラフ化でも変わらない、辺が増えすぎる
# 大事なのは左端と右端だけではないか、左端と右端がわかればいい
# 更新のときも左端か右端をどれだけ超えるのかだけが重要
# 範囲が増えた時だけ、その増えた範囲から、さらに範囲が増えるかチェック
# visitedではなく右端引く左端が答え

N, K = map(int, input().split())
INF = 10**20
X = [-INF]+list(map(int, input().split()))+[INF]
A = [0]+list(map(int, input().split()))+[0]

from bisect import *

rng = (K, K)
visited = [0]*(N+1)

while True:
    #print('pre', rng)
    left, right = rng
    for i in range(left, right+1):
        if visited[i] == 0:
            visited[i] = 1
            lower = bisect_left(X, X[i]-A[i])
            upper = bisect_left(X, X[i]+A[i])
            if X[upper] != X[i]+A[i]:
                upper -= 1
            left = min(left, lower)
            right = max(right, upper)
    if (left, right) == rng:
        break
    else:
        rng = (left, right)
    #print('post', rng)
    
ans = right+1-left
print(ans)




0