結果

問題 No.2501 Maximum Inversion Number
ユーザー なえしらなえしら
提出日時 2023-10-13 23:01:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 734 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 118,392 KB
最終ジャッジ日時 2024-09-15 18:51:30
合計ジャッジ時間 11,300 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,288 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 491 ms
107,580 KB
testcase_08 WA -
testcase_09 AC 102 ms
93,504 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 504 ms
115,620 KB
testcase_15 WA -
testcase_16 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def bis(ok, ng):
  def is_ok(md):
    ttl = sum(min(max(L[i], md), R[i]) for i in range(n))
    return ttl <= m
  
  while abs(ok - ng) > 1:
    md = (ng + ok) // 2
    if is_ok(md): ok = md
    else: ng = md
  return ok

T = int(input())
for _ in range(T):
  n, m = map(int, input().split())
  L = list(map(int, input().split()))
  R = list(map(int, input().split()))
  
  if m < sum(L) or sum(R) < m:
    print(-1)
    continue
  
  k = max(R) if sum(R) == m else bis(min(L), max(R))
  cnt = sorted([min(max(L[i], k), R[i]), i] for i in range(n))
  ttl = sum(cnt[i][0] for i in range(n))
  i = 0
  while ttl < m:
    cnt[i][0] += 1
    ttl += 1
    i += 1
  ans = sum(cnt[i][0] * (m - cnt[i][0]) for i in range(n)) // 2
  print(ans)
0