結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー mkawa2mkawa2
提出日時 2020-10-09 23:33:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 703 ms / 2,000 ms
コード長 964 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 55,860 KB
最終ジャッジ日時 2024-07-20 14:25:58
合計ジャッジ時間 26,281 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 34 ms
10,752 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 32 ms
10,752 KB
testcase_09 AC 32 ms
10,752 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 32 ms
10,752 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 32 ms
10,752 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 666 ms
51,328 KB
testcase_19 AC 640 ms
52,204 KB
testcase_20 AC 355 ms
33,224 KB
testcase_21 AC 64 ms
14,336 KB
testcase_22 AC 382 ms
35,056 KB
testcase_23 AC 54 ms
13,184 KB
testcase_24 AC 506 ms
44,716 KB
testcase_25 AC 366 ms
34,052 KB
testcase_26 AC 128 ms
19,220 KB
testcase_27 AC 55 ms
13,184 KB
testcase_28 AC 687 ms
55,860 KB
testcase_29 AC 691 ms
55,732 KB
testcase_30 AC 684 ms
55,736 KB
testcase_31 AC 688 ms
55,764 KB
testcase_32 AC 683 ms
55,640 KB
testcase_33 AC 688 ms
55,848 KB
testcase_34 AC 691 ms
55,636 KB
testcase_35 AC 703 ms
55,852 KB
testcase_36 AC 700 ms
55,844 KB
testcase_37 AC 687 ms
53,060 KB
testcase_38 AC 689 ms
55,736 KB
testcase_39 AC 698 ms
55,848 KB
testcase_40 AC 682 ms
55,740 KB
testcase_41 AC 697 ms
55,852 KB
testcase_42 AC 693 ms
53,036 KB
testcase_43 AC 31 ms
10,880 KB
testcase_44 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from operator import itemgetter
from itertools import *
from bisect import *
from collections import *
from heapq import *
import sys

# input=sys.stdin.buffer.readline
input=sys.stdin.readline

sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(input())
def MI(): return map(int, input().split())
def MI1(): return map(int1, input().split())
def LI(): return list(map(int, input().split()))
def LI1(): return list(map(int1, input().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def SI(): return input()[:-1]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
dij = [(1, 0), (0, 1), (-1, 0), (0, -1)]

n=II()
aa=LI()
bb=LI()
ab=[(a,b) for a,b in zip(aa,bb)]
ab.sort()

cs=[ab[0][1]]
for a,b in ab[1:]:cs.append(cs[-1]+b)
for i,s in enumerate(cs):
    if s>=(cs[-1]+1)//2:
        x=ab[i][0]
        ans=sum(abs(a-x)*b for a,b in ab)
        break
print(x,ans)
0