結果

問題 No.2501 Maximum Inversion Number
ユーザー なえしらなえしら
提出日時 2024-04-20 13:27:18
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 633 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 111,888 KB
最終ジャッジ日時 2024-10-12 08:57:11
合計ジャッジ時間 7,335 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 207 ms
77,160 KB
testcase_02 AC 811 ms
80,800 KB
testcase_03 AC 237 ms
81,280 KB
testcase_04 AC 228 ms
110,972 KB
testcase_05 AC 234 ms
111,780 KB
testcase_06 AC 248 ms
111,888 KB
testcase_07 AC 193 ms
97,892 KB
testcase_08 AC 225 ms
104,780 KB
testcase_09 AC 94 ms
93,440 KB
testcase_10 AC 220 ms
79,284 KB
testcase_11 AC 188 ms
92,496 KB
testcase_12 AC 194 ms
91,648 KB
testcase_13 AC 62 ms
67,712 KB
testcase_14 AC 322 ms
111,596 KB
testcase_15 AC 346 ms
83,184 KB
testcase_16 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def binary_search(ok, ng):
  while abs(ok - ng) > 1:
    md = (ng + ok) // 2
    S = sum(min(max(l, md), r) for l, r in zip(L, R))
    if S <= M: ok = md
    else: ng = md
  return ok

for _ in range(T := int(input())):
  N, M = map(int, input().split())
  L = list(map(int, input().split()))
  R = list(map(int, input().split()))
  
  if not sum(L) <= M <= sum(R):
    print(-1); continue

  k = binary_search(min(L), max(R)+1)
  K = [min(max(l, k), r) for l, r in zip(L, R)]
  S = sum(K)
  for i in range(N):
    if S == M: break
    if K[i] == k < R[i]:
      K[i] += 1; S += 1
  
  print(M*(M-1)//2 - sum(k*(k-1)//2 for k in K))
0