結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー H3PO4H3PO4
提出日時 2020-10-09 22:17:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 745 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 71,872 KB
最終ジャッジ日時 2024-07-20 12:16:17
合計ジャッジ時間 37,042 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 461 ms
44,476 KB
testcase_01 AC 483 ms
44,488 KB
testcase_02 AC 451 ms
44,344 KB
testcase_03 AC 453 ms
44,092 KB
testcase_04 AC 462 ms
44,216 KB
testcase_05 AC 471 ms
44,340 KB
testcase_06 AC 476 ms
44,088 KB
testcase_07 AC 466 ms
44,088 KB
testcase_08 AC 459 ms
44,212 KB
testcase_09 AC 453 ms
44,096 KB
testcase_10 AC 454 ms
44,476 KB
testcase_11 AC 467 ms
44,212 KB
testcase_12 AC 477 ms
44,344 KB
testcase_13 AC 482 ms
44,472 KB
testcase_14 AC 456 ms
44,084 KB
testcase_15 AC 458 ms
44,216 KB
testcase_16 AC 456 ms
44,212 KB
testcase_17 AC 461 ms
44,092 KB
testcase_18 AC 745 ms
70,520 KB
testcase_19 AC 687 ms
69,972 KB
testcase_20 AC 590 ms
56,512 KB
testcase_21 AC 473 ms
44,344 KB
testcase_22 AC 593 ms
57,376 KB
testcase_23 AC 475 ms
44,472 KB
testcase_24 AC 576 ms
62,132 KB
testcase_25 AC 541 ms
56,360 KB
testcase_26 AC 504 ms
46,776 KB
testcase_27 AC 450 ms
44,212 KB
testcase_28 AC 650 ms
71,360 KB
testcase_29 AC 642 ms
71,272 KB
testcase_30 AC 616 ms
71,872 KB
testcase_31 AC 630 ms
71,616 KB
testcase_32 AC 614 ms
71,724 KB
testcase_33 AC 615 ms
71,864 KB
testcase_34 AC 618 ms
71,620 KB
testcase_35 AC 644 ms
71,620 KB
testcase_36 AC 638 ms
71,220 KB
testcase_37 AC 625 ms
71,412 KB
testcase_38 AC 641 ms
71,612 KB
testcase_39 AC 635 ms
71,520 KB
testcase_40 AC 627 ms
71,644 KB
testcase_41 AC 648 ms
71,584 KB
testcase_42 AC 623 ms
71,408 KB
testcase_43 AC 437 ms
44,092 KB
testcase_44 AC 467 ms
44,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np

input = sys.stdin.readline

N = int(input())
AB = np.array([tuple(map(int, input().split())) for _ in range(2)])
AB = AB[:, AB[0].argsort()]

acc_ab_left = np.cumsum(AB[0] * AB[1])
acc_ab_right = np.cumsum((AB[0] * AB[1])[::-1])[::-1]
acc_b_left = np.cumsum(AB[1])
acc_b_right = np.cumsum(AB[1][::-1])[::-1]

y = np.zeros(N, dtype=int)
y[1:] += -acc_ab_left[:-1] + acc_b_left[:-1] * AB[0, 1:]
y[:-1] += acc_ab_right[1:] - acc_b_right[1:] * AB[0, :-1]
x = y.argmin()
print(AB[0, x], y[x])
0