結果

問題 No.2501 Maximum Inversion Number
ユーザー なえしらなえしら
提出日時 2024-04-20 13:52:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,741 ms / 2,000 ms
コード長 667 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 112,440 KB
最終ジャッジ日時 2024-10-12 09:25:03
合計ジャッジ時間 7,011 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,324 KB
testcase_01 AC 205 ms
77,372 KB
testcase_02 AC 726 ms
81,444 KB
testcase_03 AC 244 ms
80,696 KB
testcase_04 AC 221 ms
111,176 KB
testcase_05 AC 233 ms
111,676 KB
testcase_06 AC 251 ms
112,440 KB
testcase_07 AC 196 ms
97,432 KB
testcase_08 AC 228 ms
103,244 KB
testcase_09 AC 95 ms
91,460 KB
testcase_10 AC 225 ms
80,300 KB
testcase_11 AC 191 ms
91,868 KB
testcase_12 AC 205 ms
91,864 KB
testcase_13 AC 62 ms
67,372 KB
testcase_14 AC 324 ms
110,052 KB
testcase_15 AC 311 ms
83,532 KB
testcase_16 AC 1,741 ms
98,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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**2 - sum(k**2 for k in K)) // 2)
0