結果

問題 No.2501 Maximum Inversion Number
ユーザー なえしらなえしら
提出日時 2023-10-13 23:03:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 769 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 117,736 KB
最終ジャッジ日時 2024-09-15 18:52:53
合計ジャッジ時間 11,142 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 431 ms
79,632 KB
testcase_02 AC 793 ms
80,024 KB
testcase_03 AC 550 ms
95,572 KB
testcase_04 AC 676 ms
114,656 KB
testcase_05 AC 741 ms
117,736 KB
testcase_06 AC 717 ms
112,144 KB
testcase_07 AC 488 ms
107,828 KB
testcase_08 AC 552 ms
106,472 KB
testcase_09 AC 102 ms
93,696 KB
testcase_10 AC 443 ms
93,568 KB
testcase_11 AC 528 ms
105,060 KB
testcase_12 AC 525 ms
104,632 KB
testcase_13 AC 64 ms
66,560 KB
testcase_14 AC 501 ms
115,592 KB
testcase_15 AC 548 ms
94,552 KB
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:
    if cnt[i][0] < R[cnt[i][1]]:
      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