結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー anagohirameanagohirame
提出日時 2020-10-09 22:25:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 654 ms / 2,000 ms
コード長 423 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 128,092 KB
最終ジャッジ日時 2024-07-20 12:33:43
合計ジャッジ時間 24,370 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 38 ms
52,200 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 37 ms
51,712 KB
testcase_10 AC 38 ms
51,948 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 38 ms
51,584 KB
testcase_13 AC 38 ms
52,096 KB
testcase_14 AC 37 ms
51,584 KB
testcase_15 AC 38 ms
51,968 KB
testcase_16 AC 38 ms
51,584 KB
testcase_17 AC 37 ms
52,096 KB
testcase_18 AC 611 ms
126,900 KB
testcase_19 AC 585 ms
121,312 KB
testcase_20 AC 333 ms
102,964 KB
testcase_21 AC 83 ms
76,416 KB
testcase_22 AC 367 ms
104,084 KB
testcase_23 AC 77 ms
76,416 KB
testcase_24 AC 486 ms
116,888 KB
testcase_25 AC 359 ms
103,536 KB
testcase_26 AC 148 ms
86,528 KB
testcase_27 AC 76 ms
76,396 KB
testcase_28 AC 637 ms
127,592 KB
testcase_29 AC 635 ms
127,472 KB
testcase_30 AC 625 ms
127,668 KB
testcase_31 AC 630 ms
127,532 KB
testcase_32 AC 644 ms
127,536 KB
testcase_33 AC 634 ms
127,544 KB
testcase_34 AC 637 ms
127,976 KB
testcase_35 AC 641 ms
127,660 KB
testcase_36 AC 643 ms
127,548 KB
testcase_37 AC 638 ms
127,540 KB
testcase_38 AC 645 ms
128,092 KB
testcase_39 AC 649 ms
127,928 KB
testcase_40 AC 654 ms
127,532 KB
testcase_41 AC 643 ms
127,452 KB
testcase_42 AC 645 ms
127,724 KB
testcase_43 AC 39 ms
52,096 KB
testcase_44 AC 38 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
c = []
for x, y in zip(a, b):
	c.append((x, y))
c.sort()
v = 0
for x, y in c:
	v += y * abs(c[0][0] - x)

ans1, ans2 = c[0][0], v
l, r = c[0][1], sum(b) - c[0][1]
for i in range(1, n):
	v += l * (c[i][0] - c[i-1][0])
	v -= r * (c[i][0] - c[i-1][0])
	l += c[i][1]
	r -= c[i][1]
	if v < ans2:
		ans1, ans2 = c[i][0], v
print(ans1, ans2)
0