結果
問題 | No.972 選び方のスコア |
ユーザー | ntuda |
提出日時 | 2021-11-10 22:59:36 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 766 bytes |
コンパイル時間 | 174 ms |
コンパイル使用メモリ | 82,368 KB |
実行使用メモリ | 1,438,448 KB |
最終ジャッジ日時 | 2024-05-01 11:47:33 |
合計ジャッジ時間 | 7,798 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
ソースコード
import sys from functools import lru_cache N = int(input()) A = list(map(int, input().split())) if N < 3: print(0) sys.exit() A.sort() B = [0] * (N + 1) for i in range(N): B[i + 1] = B[i] + A[i] @lru_cache(maxsize=None) def g(x, y): return B[N] - B[N - y] + B[x] - B[x - y] - (2 * y) * A[x] #@lru_cache(maxsize=None) def f(x): lb = 1 ub = min(x, N - x - 1) t1 = (ub + 2 * lb) // 3 t2 = (2 * ub + lb) // 3 while ub - lb > 3: # ??? b, c = g(x, t1), g(x, t2) if b < c: lb = t1 else: ub = t2 t1 = (ub + 2 * lb) // 3 t2 = (2 * ub + lb) // 3 return (max(g(x, lb), g(x, t1), g(x, t2), g(x, ub))) ans = 0 for i in range(1,N-1): ans = max(ans,f(i)) print(ans)