結果
問題 | No.545 ママの大事な二人の子供 |
ユーザー | tktk_snsn |
提出日時 | 2020-12-24 00:16:06 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 937 bytes |
コンパイル時間 | 161 ms |
コンパイル使用メモリ | 82,196 KB |
実行使用メモリ | 81,448 KB |
最終ジャッジ日時 | 2024-09-21 16:37:36 |
合計ジャッジ時間 | 6,615 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
52,608 KB |
testcase_01 | AC | 46 ms
52,224 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 42 ms
52,224 KB |
testcase_05 | AC | 42 ms
52,096 KB |
testcase_06 | WA | - |
testcase_07 | AC | 46 ms
52,608 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 44 ms
52,608 KB |
testcase_12 | WA | - |
testcase_13 | AC | 60 ms
62,208 KB |
testcase_14 | AC | 63 ms
64,512 KB |
testcase_15 | WA | - |
testcase_16 | AC | 70 ms
66,688 KB |
testcase_17 | WA | - |
testcase_18 | AC | 134 ms
76,340 KB |
testcase_19 | WA | - |
testcase_20 | AC | 141 ms
77,184 KB |
testcase_21 | AC | 43 ms
52,224 KB |
testcase_22 | AC | 245 ms
78,464 KB |
testcase_23 | WA | - |
testcase_24 | AC | 415 ms
77,824 KB |
testcase_25 | AC | 344 ms
80,800 KB |
testcase_26 | AC | 234 ms
80,548 KB |
testcase_27 | WA | - |
testcase_28 | AC | 439 ms
80,424 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
ソースコード
import bisect from itertools import product n = int(input()) if n == 1: a, b = map(int, input().split()) print(min(a, b)) exit() A = tuple(tuple(map(int, input().split())) for _ in range(n)) def enum(X): res = [] for pair in product(range(2), repeat=len(X)): val = 0 for p, (x, y) in zip(pair, X): if p == 0: val += x else: val -= y res.append(val) return res X = enum(A[:n // 2]) Y = enum(A[n // 2:]) Y.sort() def C(m): for x in X: l = bisect.bisect_left(Y, x - m) r = bisect.bisect_right(Y, x + m) if l != r: return True l = bisect.bisect_left(Y, -x - m) r = bisect.bisect_right(Y, -x + m) if l != r: return True return False l = -1 r = 10 ** 12 while r - l > 1: m = (r + l) // 2 if C(m): r = m else: l = m print(r)