結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー r_ishidar_ishida
提出日時 2021-01-23 22:02:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 707 ms / 2,000 ms
コード長 856 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 48,316 KB
最終ジャッジ日時 2024-06-10 06:44:02
合計ジャッジ時間 25,090 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
11,008 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 25 ms
11,008 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 25 ms
11,008 KB
testcase_08 AC 26 ms
10,880 KB
testcase_09 AC 25 ms
11,008 KB
testcase_10 AC 27 ms
10,880 KB
testcase_11 AC 26 ms
10,880 KB
testcase_12 AC 27 ms
10,880 KB
testcase_13 AC 26 ms
11,008 KB
testcase_14 AC 27 ms
11,008 KB
testcase_15 AC 26 ms
11,008 KB
testcase_16 AC 26 ms
11,008 KB
testcase_17 AC 26 ms
10,880 KB
testcase_18 AC 631 ms
46,668 KB
testcase_19 AC 608 ms
44,336 KB
testcase_20 AC 309 ms
30,620 KB
testcase_21 AC 61 ms
13,696 KB
testcase_22 AC 344 ms
32,236 KB
testcase_23 AC 50 ms
12,800 KB
testcase_24 AC 491 ms
39,004 KB
testcase_25 AC 321 ms
30,704 KB
testcase_26 AC 120 ms
18,016 KB
testcase_27 AC 51 ms
13,056 KB
testcase_28 AC 664 ms
46,848 KB
testcase_29 AC 651 ms
48,316 KB
testcase_30 AC 707 ms
46,976 KB
testcase_31 AC 662 ms
48,160 KB
testcase_32 AC 680 ms
46,848 KB
testcase_33 AC 659 ms
46,852 KB
testcase_34 AC 682 ms
46,852 KB
testcase_35 AC 675 ms
46,792 KB
testcase_36 AC 685 ms
48,224 KB
testcase_37 AC 662 ms
46,852 KB
testcase_38 AC 658 ms
46,848 KB
testcase_39 AC 671 ms
47,000 KB
testcase_40 AC 701 ms
46,848 KB
testcase_41 AC 671 ms
46,848 KB
testcase_42 AC 692 ms
46,980 KB
testcase_43 AC 26 ms
10,880 KB
testcase_44 AC 26 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def S(): return sys.stdin.readline().rstrip()
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LS(): return list(sys.stdin.readline().rstrip().split())

N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
C=[[A[i],B[i]] for i in range(N)]

if N==1:
    print(0,0)
    exit()

sumB=sum(B)
C.sort(key=lambda x:x[0])

temp=0
for index in range(N-1):
    temp+=C[index][1]
    if temp>=sumB/2:
        break
X=[(C[index][0]+C[index+1][0])/2] if temp==sumB/2 else [C[index][0],C[index-1][0]]

log=0
ans=10**18
for x in X:
    temp=0
    for a,b in C:
        temp+=abs(x-a)*b
    if ans>=temp:
        ans=temp
        log=x
print(log,int(ans))
0