結果

問題 No.2248 max(C)-min(C)
ユーザー FromBooskaFromBooska
提出日時 2023-05-03 14:23:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 665 ms / 3,000 ms
コード長 1,649 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 133,616 KB
最終ジャッジ日時 2024-11-21 18:27:13
合計ジャッジ時間 19,959 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 60 ms
67,712 KB
testcase_04 AC 58 ms
66,688 KB
testcase_05 AC 53 ms
63,872 KB
testcase_06 AC 70 ms
72,192 KB
testcase_07 AC 70 ms
72,448 KB
testcase_08 AC 70 ms
72,448 KB
testcase_09 AC 73 ms
73,344 KB
testcase_10 AC 52 ms
63,616 KB
testcase_11 AC 71 ms
72,704 KB
testcase_12 AC 63 ms
68,608 KB
testcase_13 AC 68 ms
71,424 KB
testcase_14 AC 75 ms
73,856 KB
testcase_15 AC 75 ms
73,948 KB
testcase_16 AC 60 ms
67,200 KB
testcase_17 AC 72 ms
73,216 KB
testcase_18 AC 504 ms
110,316 KB
testcase_19 AC 119 ms
82,304 KB
testcase_20 AC 611 ms
133,612 KB
testcase_21 AC 633 ms
112,944 KB
testcase_22 AC 409 ms
106,272 KB
testcase_23 AC 320 ms
98,304 KB
testcase_24 AC 159 ms
84,992 KB
testcase_25 AC 522 ms
109,800 KB
testcase_26 AC 522 ms
109,348 KB
testcase_27 AC 584 ms
109,916 KB
testcase_28 AC 111 ms
79,960 KB
testcase_29 AC 559 ms
111,432 KB
testcase_30 AC 244 ms
94,976 KB
testcase_31 AC 602 ms
133,616 KB
testcase_32 AC 172 ms
86,104 KB
testcase_33 AC 229 ms
92,672 KB
testcase_34 AC 611 ms
133,360 KB
testcase_35 AC 665 ms
133,448 KB
testcase_36 AC 589 ms
133,504 KB
testcase_37 AC 373 ms
103,892 KB
testcase_38 AC 565 ms
114,260 KB
testcase_39 AC 557 ms
114,260 KB
testcase_40 AC 555 ms
114,400 KB
testcase_41 AC 511 ms
112,092 KB
testcase_42 AC 560 ms
114,456 KB
testcase_43 AC 519 ms
111,148 KB
testcase_44 AC 626 ms
114,392 KB
testcase_45 AC 481 ms
112,224 KB
testcase_46 AC 277 ms
100,436 KB
testcase_47 AC 608 ms
114,260 KB
testcase_48 AC 473 ms
114,116 KB
testcase_49 AC 422 ms
132,840 KB
testcase_50 AC 429 ms
132,952 KB
testcase_51 AC 428 ms
132,820 KB
testcase_52 AC 423 ms
133,080 KB
testcase_53 AC 128 ms
84,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Ciは3項の選択がある
# ある値を決め打って、一番近いmin、一番近いmaxを探したらどうか
# 三分探索で最小値探索

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

C = []
for i in range(N):
    temp = []
    temp.append(A[i])
    temp.append(B[i])
    temp.append((A[i]+B[i])//2)
    temp.sort()
    C.append(temp)
    
def check(X):
    mn = 10**10
    mx = -1
    for i in range(N):
        temp = C[i]
        if X <= (temp[0]+temp[1])/2:
            mn = min(mn, temp[0])
            mx = max(mx, temp[0])
        elif (temp[1]+temp[2])/2 <= X:
            mn = min(mn, temp[2])
            mx = max(mx, temp[2])        
        else:
            mn = min(mn, temp[1])
            mx = max(mx, temp[1]) 
    return (mx-mn) 

#for x in range(1, 20):
#    print(x, check(x))
    
# 谷、つまり1極値を求める三分探索での解き方
# https://roiti46.hatenablog.com/entry/2015/04/29/yukicoder_No.198_%E3%82%AD%E3%83%A3%E3%83%B3%E3%83%87%E3%82%A3%E3%83%BC%E3%83%BB%E3%83%9C%E3%83%83%E3%82%AF%E3%82%B9%EF%BC%92
# https://qiita.com/ganyariya/items/1553ff2bf8d6d7789127

# 範囲に注意、ギリギリありえない値とする
left, right = -1, 10**9+2
while right-left > 2:
    left_mid, right_mid = (2*left+right)//3, (left+2*right)//3
    if check(left_mid) <= check(right_mid):
        # 右midの方が大きいから右を右midに変える
        right = right_mid
    else:
        left = left_mid

#print(left_mid, right_mid)

ans = min(check(left_mid), check(right_mid))
# leftとrightの間も入れる必要あるのか? ない
print(ans)


0