結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー uni_pythonuni_python
提出日時 2020-10-10 11:17:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 846 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 127,132 KB
最終ジャッジ日時 2024-07-20 15:46:04
合計ジャッジ時間 26,068 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 41 ms
51,712 KB
testcase_05 AC 42 ms
52,096 KB
testcase_06 AC 42 ms
51,840 KB
testcase_07 AC 41 ms
52,096 KB
testcase_08 AC 43 ms
51,968 KB
testcase_09 AC 42 ms
51,840 KB
testcase_10 AC 41 ms
51,584 KB
testcase_11 AC 41 ms
51,712 KB
testcase_12 AC 42 ms
52,352 KB
testcase_13 AC 42 ms
51,712 KB
testcase_14 AC 42 ms
52,352 KB
testcase_15 AC 41 ms
52,096 KB
testcase_16 AC 42 ms
51,968 KB
testcase_17 AC 41 ms
52,608 KB
testcase_18 WA -
testcase_19 AC 628 ms
119,564 KB
testcase_20 AC 366 ms
102,144 KB
testcase_21 AC 92 ms
76,928 KB
testcase_22 AC 399 ms
101,888 KB
testcase_23 AC 82 ms
76,160 KB
testcase_24 AC 521 ms
117,552 KB
testcase_25 AC 374 ms
101,760 KB
testcase_26 AC 161 ms
86,016 KB
testcase_27 AC 85 ms
75,648 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 695 ms
126,880 KB
testcase_31 WA -
testcase_32 AC 690 ms
126,620 KB
testcase_33 AC 690 ms
126,240 KB
testcase_34 AC 686 ms
126,628 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 683 ms
126,372 KB
testcase_39 AC 681 ms
126,228 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 41 ms
52,608 KB
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    import bisect
    
    N=I()
    A=LI()
    B=LI()
    A,B = zip(*sorted(zip(A, B)))
    
    def calc(x):
        temp=0
        for i in range(N):
            temp+=B[i]*abs(x-A[i])
        return temp
    
    N2=sum(B)
    num=(N2-1)//2
    if N2%2:
        cnt=0
        i=-1
        while cnt<num:
            # print(i,cnt,num)
            i+=1
            cnt+=B[i]
        print(A[i],calc(A[i]))
    else:
        cnt=0
        i=-1
        num2=num+1
        while cnt<num:
            i+=1
            cnt+=B[i]
        i2=i
        if cnt<num2:
            i2+=1
            
        x=(A[i]+A[i2])/2
        print(x,int(calc(x)))
        
            

main()
0