結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー tonnnura172tonnnura172
提出日時 2020-10-23 23:52:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 811 ms / 2,000 ms
コード長 1,015 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 58,060 KB
最終ジャッジ日時 2024-07-21 13:53:57
合計ジャッジ時間 26,677 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
11,136 KB
testcase_01 AC 37 ms
11,264 KB
testcase_02 AC 34 ms
11,264 KB
testcase_03 AC 34 ms
11,264 KB
testcase_04 AC 35 ms
11,136 KB
testcase_05 AC 34 ms
11,136 KB
testcase_06 AC 34 ms
11,136 KB
testcase_07 AC 35 ms
11,136 KB
testcase_08 AC 34 ms
11,136 KB
testcase_09 AC 36 ms
11,136 KB
testcase_10 AC 34 ms
11,264 KB
testcase_11 AC 34 ms
11,136 KB
testcase_12 AC 34 ms
11,136 KB
testcase_13 AC 35 ms
11,264 KB
testcase_14 AC 33 ms
11,264 KB
testcase_15 AC 35 ms
11,264 KB
testcase_16 AC 35 ms
11,136 KB
testcase_17 AC 34 ms
11,264 KB
testcase_18 AC 809 ms
54,616 KB
testcase_19 AC 748 ms
54,528 KB
testcase_20 AC 359 ms
35,204 KB
testcase_21 AC 66 ms
14,720 KB
testcase_22 AC 410 ms
37,408 KB
testcase_23 AC 56 ms
13,696 KB
testcase_24 AC 571 ms
46,504 KB
testcase_25 AC 391 ms
36,304 KB
testcase_26 AC 124 ms
20,060 KB
testcase_27 AC 57 ms
13,824 KB
testcase_28 AC 784 ms
56,700 KB
testcase_29 AC 811 ms
58,060 KB
testcase_30 AC 802 ms
57,932 KB
testcase_31 AC 803 ms
57,932 KB
testcase_32 AC 794 ms
56,576 KB
testcase_33 AC 779 ms
56,576 KB
testcase_34 AC 778 ms
56,572 KB
testcase_35 AC 760 ms
56,572 KB
testcase_36 AC 786 ms
56,448 KB
testcase_37 AC 779 ms
56,708 KB
testcase_38 AC 773 ms
56,700 KB
testcase_39 AC 778 ms
56,572 KB
testcase_40 AC 764 ms
56,576 KB
testcase_41 AC 788 ms
56,704 KB
testcase_42 AC 781 ms
56,700 KB
testcase_43 AC 33 ms
11,264 KB
testcase_44 AC 33 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, re
from collections import deque, defaultdict, Counter
from math import ceil, sqrt, hypot, factorial, pi, sin, cos, radians, gcd
from itertools import accumulate, permutations, combinations, product, groupby, combinations_with_replacement
from operator import itemgetter, mul
from copy import deepcopy
from string import ascii_lowercase, ascii_uppercase, digits
from bisect import bisect, bisect_left
from heapq import heappush, heappop
from functools import reduce
def input(): return sys.stdin.readline().strip()
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(): return list(map(int, input().split()))
def ZIP(n): return zip(*(MAP() for _ in range(n)))
sys.setrecursionlimit(10 ** 9)
INF = float('inf')
mod = 10 ** 9 + 7

N = INT()
AB = [[x, y] for x, y in zip(LIST(), LIST())]
AB.sort(key=lambda x:x[0])
A, B = zip(*AB)
med = (sum(B)+1)//2
idx = bisect_left(list(accumulate(B)), med)
X = A[idx]

ans = 0
for a, b in zip(A, B):
    ans += b*abs(X-a)
print(X, ans)
0