結果

問題 No.2501 Maximum Inversion Number
ユーザー naesiranaesira
提出日時 2023-10-13 21:47:18
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 512 bytes
コンパイル時間 1,348 ms
コンパイル使用メモリ 87,064 KB
実行使用メモリ 85,560 KB
最終ジャッジ日時 2023-10-13 21:47:27
合計ジャッジ時間 7,148 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop

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()))
  ttl = sum(L)
  if m < ttl or sum(R) < m:
    print(-1)
    continue
  
  que = []
  for i in range(n):
    if L[i] < R[i]:
      heappush(que, (L[i], i))
  while ttl < m:
    l, i = heappop(que)
    L[i] += 1
    ttl += 1
    if L[i] < R[i]:
      heappush(que, (L[i], i))
  ans = sum(l * (m - l) for l in L) // 2
  print(ans)
0