結果

問題 No.1495 パンの仕入れ
ユーザー penguinmanpenguinman
提出日時 2021-04-25 02:51:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,212 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 84,616 KB
最終ジャッジ日時 2024-07-04 09:24:17
合計ジャッジ時間 14,869 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 242 ms
77,912 KB
testcase_13 AC 242 ms
77,440 KB
testcase_14 AC 240 ms
77,636 KB
testcase_15 AC 235 ms
77,720 KB
testcase_16 AC 238 ms
77,440 KB
testcase_17 AC 236 ms
77,568 KB
testcase_18 AC 241 ms
77,660 KB
testcase_19 AC 243 ms
77,696 KB
testcase_20 AC 242 ms
77,184 KB
testcase_21 AC 246 ms
77,440 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 160 ms
79,552 KB
testcase_25 AC 156 ms
79,836 KB
testcase_26 AC 159 ms
79,360 KB
testcase_27 AC 159 ms
79,616 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 220 ms
77,440 KB
testcase_31 AC 219 ms
77,440 KB
testcase_32 AC 222 ms
77,440 KB
testcase_33 AC 222 ms
77,440 KB
testcase_34 AC 230 ms
77,440 KB
testcase_35 AC 229 ms
77,184 KB
testcase_36 AC 226 ms
77,440 KB
testcase_37 AC 231 ms
77,440 KB
testcase_38 AC 229 ms
77,440 KB
testcase_39 AC 226 ms
77,584 KB
testcase_40 AC 212 ms
77,424 KB
testcase_41 AC 217 ms
77,440 KB
testcase_42 AC 222 ms
77,824 KB
testcase_43 AC 214 ms
77,440 KB
testcase_44 AC 222 ms
77,364 KB
testcase_45 AC 40 ms
51,584 KB
testcase_46 WA -
testcase_47 AC 39 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
inf = int(2e18)
for _ in range(T):
    N, M, K = map(int, input().split())
    x = [0]*M
    y = [0]*M
    for i in range(M):
        x[i], y[i] = map(int, input().split())
    cnt = [0]*N
    mem = [0]*N
    for i in range(M):
        x[i] -= 1
        cnt[x[i]] += 2
        # (x-y)^2-(x-(y-1))^2 = 2x-2y-1
        mem[x[i]] -= 2*y[i]+1
    left = -inf
    right = inf
    while left+1 < right:
        mid = (right+left)//2
        cnt2 = 0
        for i in range(N):
            if cnt[i] == 0:
                if 0 <= mid:
                    cnt2 += inf
            else:
                # ax+mem[i] ≤ mid
                # ax ≤ mid-mem[i]
                cnt2 += max(0, (mid-mem[i])//cnt[i])
            if cnt2 > K:
                break
        if cnt2 < K:
            left = mid
        else:
            right = mid
    ans = 0
    flag = False
    num = [0]*N
    cnt2 = 0
    for i in range(N):
        if cnt[i] == 0:
            flag = True
        else:
            num[i] = max(0, (left-mem[i])//cnt[i])
            cnt2 += num[i]
    for i in range(M):
        ans += (num[x[i]]-y[i])*(num[x[i]]-y[i])
    if flag:
        cnt2 = K
    ans += (K-cnt2)*right
    print(ans)
0