結果

問題 No.2501 Maximum Inversion Number
ユーザー なえしらなえしら
提出日時 2023-10-13 23:41:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,471 ms / 2,000 ms
コード長 767 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 111,940 KB
最終ジャッジ日時 2024-09-15 19:34:04
合計ジャッジ時間 6,755 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 222 ms
77,388 KB
testcase_02 AC 748 ms
82,372 KB
testcase_03 AC 250 ms
79,872 KB
testcase_04 AC 235 ms
110,852 KB
testcase_05 AC 234 ms
111,940 KB
testcase_06 AC 264 ms
111,792 KB
testcase_07 AC 210 ms
97,124 KB
testcase_08 AC 195 ms
103,352 KB
testcase_09 AC 111 ms
91,648 KB
testcase_10 AC 234 ms
81,152 KB
testcase_11 AC 208 ms
92,912 KB
testcase_12 AC 211 ms
91,768 KB
testcase_13 AC 68 ms
65,280 KB
testcase_14 AC 319 ms
109,672 KB
testcase_15 AC 315 ms
82,180 KB
testcase_16 AC 1,471 ms
95,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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 = [min(max(L[i], k), R[i]) for i in range(n)]
  ttl = sum(cnt)
  for i in range(n):
    if ttl == m: break
    if cnt[i] == k < R[i]:
      cnt[i] += 1
      ttl += 1
  ans = sum(cnt[i] * (m - cnt[i]) for i in  range(n))
  print(ans // 2)
0