結果
問題 | No.837 Noelちゃんと星々2 |
ユーザー | daku9640 |
提出日時 | 2019-06-14 22:22:19 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 765 bytes |
コンパイル時間 | 296 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 34,572 KB |
最終ジャッジ日時 | 2024-11-14 06:39:49 |
合計ジャッジ時間 | 14,777 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | TLE | - |
testcase_11 | WA | - |
testcase_12 | TLE | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 31 ms
10,880 KB |
testcase_17 | WA | - |
testcase_18 | TLE | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 31 ms
10,752 KB |
testcase_25 | AC | 31 ms
10,752 KB |
testcase_26 | AC | 31 ms
10,752 KB |
testcase_27 | AC | 31 ms
10,752 KB |
testcase_28 | AC | 31 ms
10,752 KB |
testcase_29 | AC | 31 ms
10,752 KB |
testcase_30 | AC | 31 ms
10,752 KB |
testcase_31 | AC | 31 ms
10,880 KB |
testcase_32 | AC | 32 ms
21,504 KB |
ソースコード
def solve(): n = int(input()) Y = sorted(map(int, input().split())) def f(i, j): ans = 0 for k in range(n): if k != i and k != j: ans += abs(Y[i] - Y[k]) if abs(Y[i] - Y[k]) < abs(Y[j] - Y[k]) else abs(Y[j] - Y[k]) return ans len_set_Y = len(set(Y)) if len_set_Y == 1: return 1 if len_set_Y == 2 or n == 2: return 0 l = int(n / 2 / 2) r = int(n / 2 + l) ans = f(l, r) next_ans = int(1e10) while ans != next_ans: ll = (l // 2) lr = (l + r) // 2 rr = (r + n) // 2 for i, j in ((ll, r), (lr, r), (l, lr), (l, rr)): next_ans = min(next_ans, f(i, j)) ans = min(ans, next_ans) return ans print(solve())