結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー 👑 KazunKazun
提出日時 2020-09-01 19:49:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 426 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 125,612 KB
最終ジャッジ日時 2024-07-20 06:21:52
合計ジャッジ時間 21,035 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 42 ms
51,456 KB
testcase_02 AC 42 ms
51,584 KB
testcase_03 AC 42 ms
51,712 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 42 ms
51,968 KB
testcase_06 AC 41 ms
51,456 KB
testcase_07 AC 41 ms
51,840 KB
testcase_08 AC 41 ms
51,584 KB
testcase_09 AC 41 ms
51,840 KB
testcase_10 AC 40 ms
51,712 KB
testcase_11 AC 42 ms
51,456 KB
testcase_12 AC 42 ms
51,584 KB
testcase_13 AC 42 ms
51,584 KB
testcase_14 AC 43 ms
51,968 KB
testcase_15 AC 43 ms
51,968 KB
testcase_16 AC 42 ms
51,840 KB
testcase_17 AC 42 ms
51,840 KB
testcase_18 AC 410 ms
125,612 KB
testcase_19 AC 353 ms
113,500 KB
testcase_20 AC 215 ms
103,040 KB
testcase_21 AC 75 ms
69,376 KB
testcase_22 AC 224 ms
103,552 KB
testcase_23 AC 70 ms
68,224 KB
testcase_24 AC 284 ms
103,168 KB
testcase_25 AC 217 ms
103,424 KB
testcase_26 AC 109 ms
82,304 KB
testcase_27 AC 69 ms
67,840 KB
testcase_28 AC 413 ms
124,520 KB
testcase_29 AC 420 ms
124,444 KB
testcase_30 AC 421 ms
124,380 KB
testcase_31 AC 416 ms
124,344 KB
testcase_32 AC 420 ms
125,108 KB
testcase_33 AC 416 ms
124,772 KB
testcase_34 AC 413 ms
124,888 KB
testcase_35 AC 426 ms
124,640 KB
testcase_36 AC 416 ms
124,532 KB
testcase_37 AC 415 ms
125,028 KB
testcase_38 AC 419 ms
124,904 KB
testcase_39 AC 421 ms
124,516 KB
testcase_40 AC 424 ms
124,512 KB
testcase_41 AC 414 ms
124,512 KB
testcase_42 AC 414 ms
124,516 KB
testcase_43 AC 41 ms
51,712 KB
testcase_44 AC 41 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(x):
    S=0
    for k in range(N):
        S+=B[k]*abs(x-A[k])
    return S

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

#===制約チェック
assert 1<=N<=2*10**5
assert len(A)==N
assert len(B)==N

for i in range(N):
    assert -10**6<=A[i]<=10**6
    assert 1<=B[i]<=10**6
#===

B_sum=sum(B)

L=[0]*N
for k in range(N):
    L[k]=(A[k],B[k])

L.sort(key=lambda x:x[0])

Med=(B_sum+1)//2
Count=0

for (X,Y) in L:
    Count+=Y
    if Med<=Count:
        break

print(X,f(X))
0