結果
問題 | No.545 ママの大事な二人の子供 |
ユーザー | hedwig100 |
提出日時 | 2020-05-29 12:12:12 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 485 ms / 2,000 ms |
コード長 | 649 bytes |
コンパイル時間 | 81 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 45,704 KB |
最終ジャッジ日時 | 2024-10-14 16:52:27 |
合計ジャッジ時間 | 17,412 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 454 ms
44,240 KB |
testcase_01 | AC | 464 ms
44,236 KB |
testcase_02 | AC | 461 ms
44,496 KB |
testcase_03 | AC | 460 ms
44,240 KB |
testcase_04 | AC | 458 ms
43,728 KB |
testcase_05 | AC | 459 ms
44,252 KB |
testcase_06 | AC | 464 ms
44,368 KB |
testcase_07 | AC | 468 ms
44,748 KB |
testcase_08 | AC | 459 ms
44,240 KB |
testcase_09 | AC | 467 ms
44,372 KB |
testcase_10 | AC | 475 ms
44,496 KB |
testcase_11 | AC | 467 ms
43,984 KB |
testcase_12 | AC | 465 ms
44,240 KB |
testcase_13 | AC | 464 ms
44,752 KB |
testcase_14 | AC | 470 ms
44,112 KB |
testcase_15 | AC | 458 ms
44,500 KB |
testcase_16 | AC | 470 ms
44,364 KB |
testcase_17 | AC | 470 ms
44,492 KB |
testcase_18 | AC | 468 ms
44,496 KB |
testcase_19 | AC | 464 ms
44,240 KB |
testcase_20 | AC | 468 ms
44,372 KB |
testcase_21 | AC | 462 ms
43,860 KB |
testcase_22 | AC | 474 ms
44,752 KB |
testcase_23 | AC | 477 ms
45,576 KB |
testcase_24 | AC | 466 ms
44,760 KB |
testcase_25 | AC | 472 ms
45,324 KB |
testcase_26 | AC | 484 ms
45,592 KB |
testcase_27 | AC | 473 ms
45,468 KB |
testcase_28 | AC | 485 ms
45,580 KB |
testcase_29 | AC | 475 ms
45,340 KB |
testcase_30 | AC | 483 ms
45,704 KB |
testcase_31 | AC | 476 ms
45,212 KB |
ソースコード
import numpy as np INF = 1<<50 N = int(input()) satisf = [tuple(map(int,input().split())) for _ in range(N)] if N == 1: print(min(satisf[0])) exit() left = np.array([satisf[0][0],-satisf[0][1]]) for x,y in satisf[1:N//2]: left = np.concatenate([left + x,left - y]) right = np.array([satisf[N//2][0],-satisf[N//2][1]]) for x,y in satisf[N//2 + 1:]: right = np.concatenate([right + x,right - y]) right = np.append(right,INF) right = np.append(right,-INF) right = np.sort(np.unique(right)) idx = np.searchsorted(right,-left,'left') ans1 = np.abs(left + right[idx]).min() ans2 = np.abs(left + right[idx - 1]).min() print(min(ans1,ans2))