結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-10-09 21:55:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 447 ms / 2,000 ms
コード長 561 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 136,744 KB
最終ジャッジ日時 2024-07-20 11:00:30
合計ジャッジ時間 20,530 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 39 ms
51,456 KB
testcase_07 AC 38 ms
51,840 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 40 ms
51,584 KB
testcase_10 AC 38 ms
52,096 KB
testcase_11 AC 39 ms
52,480 KB
testcase_12 AC 40 ms
51,968 KB
testcase_13 AC 39 ms
52,480 KB
testcase_14 AC 38 ms
52,224 KB
testcase_15 AC 41 ms
51,840 KB
testcase_16 AC 39 ms
52,072 KB
testcase_17 AC 40 ms
52,608 KB
testcase_18 AC 432 ms
136,744 KB
testcase_19 AC 355 ms
128,580 KB
testcase_20 AC 216 ms
101,808 KB
testcase_21 AC 69 ms
72,448 KB
testcase_22 AC 230 ms
102,528 KB
testcase_23 AC 65 ms
70,400 KB
testcase_24 AC 297 ms
116,808 KB
testcase_25 AC 223 ms
102,400 KB
testcase_26 AC 108 ms
88,204 KB
testcase_27 AC 64 ms
70,144 KB
testcase_28 AC 425 ms
135,204 KB
testcase_29 AC 436 ms
135,200 KB
testcase_30 AC 440 ms
135,008 KB
testcase_31 AC 431 ms
135,288 KB
testcase_32 AC 432 ms
135,976 KB
testcase_33 AC 447 ms
135,120 KB
testcase_34 AC 447 ms
135,452 KB
testcase_35 AC 432 ms
135,092 KB
testcase_36 AC 438 ms
134,912 KB
testcase_37 AC 444 ms
135,124 KB
testcase_38 AC 431 ms
135,700 KB
testcase_39 AC 441 ms
135,440 KB
testcase_40 AC 437 ms
135,560 KB
testcase_41 AC 435 ms
135,004 KB
testcase_42 AC 435 ms
135,304 KB
testcase_43 AC 38 ms
51,712 KB
testcase_44 AC 39 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys;input=sys.stdin.readline
N, = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
Z = sorted(list(zip(A,B)), key=lambda x:x[0])
C = [0]*(N+1)
D = [0]*(N+1)
E = [0]*(N+1)
F = [0]*(N+1)
for i in range(N):
    a, b = Z[i]
    C[i+1] += C[i] + b
    D[i+1] += D[i] - a*b
for i in range(N-1, -1, -1):
    a, b = Z[i]
    E[i] += E[i+1] + b
    F[i] += F[i+1] - a*b
m = 10**18
for i in range(N):
    a, b = Z[i]
    r = (-E[i+1]+C[i])*a +(-F[i+1]+D[i])
    if r < m:
        m = r
        mx = a
print(mx, m)

0