結果

問題 No.1495 パンの仕入れ
ユーザー penguinmanpenguinman
提出日時 2021-04-25 02:52:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 478 ms / 2,000 ms
コード長 1,227 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 84,224 KB
最終ジャッジ日時 2024-07-18 21:26:15
合計ジャッジ時間 17,360 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 42 ms
52,736 KB
testcase_02 AC 466 ms
77,744 KB
testcase_03 AC 462 ms
78,292 KB
testcase_04 AC 465 ms
78,132 KB
testcase_05 AC 451 ms
77,724 KB
testcase_06 AC 464 ms
77,716 KB
testcase_07 AC 474 ms
78,368 KB
testcase_08 AC 469 ms
77,860 KB
testcase_09 AC 471 ms
78,156 KB
testcase_10 AC 458 ms
78,112 KB
testcase_11 AC 478 ms
77,732 KB
testcase_12 AC 253 ms
77,696 KB
testcase_13 AC 254 ms
77,184 KB
testcase_14 AC 260 ms
77,696 KB
testcase_15 AC 251 ms
77,440 KB
testcase_16 AC 250 ms
77,824 KB
testcase_17 AC 252 ms
77,440 KB
testcase_18 AC 251 ms
77,312 KB
testcase_19 AC 249 ms
77,440 KB
testcase_20 AC 252 ms
77,312 KB
testcase_21 AC 250 ms
77,184 KB
testcase_22 AC 424 ms
83,840 KB
testcase_23 AC 427 ms
84,096 KB
testcase_24 AC 169 ms
79,488 KB
testcase_25 AC 170 ms
79,360 KB
testcase_26 AC 169 ms
79,488 KB
testcase_27 AC 169 ms
79,488 KB
testcase_28 AC 410 ms
83,968 KB
testcase_29 AC 404 ms
84,224 KB
testcase_30 AC 243 ms
77,440 KB
testcase_31 AC 246 ms
77,696 KB
testcase_32 AC 244 ms
77,312 KB
testcase_33 AC 243 ms
77,440 KB
testcase_34 AC 245 ms
77,568 KB
testcase_35 AC 247 ms
77,440 KB
testcase_36 AC 246 ms
77,824 KB
testcase_37 AC 244 ms
77,568 KB
testcase_38 AC 245 ms
77,440 KB
testcase_39 AC 247 ms
77,568 KB
testcase_40 AC 235 ms
77,312 KB
testcase_41 AC 234 ms
77,440 KB
testcase_42 AC 234 ms
77,568 KB
testcase_43 AC 233 ms
77,184 KB
testcase_44 AC 231 ms
77,440 KB
testcase_45 AC 40 ms
51,968 KB
testcase_46 AC 74 ms
67,584 KB
testcase_47 AC 40 ms
52,096 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 and right > 0:
        cnt2 = K
    ans += (K-cnt2)*right
    print(ans)
0