結果

問題 No.1495 パンの仕入れ
ユーザー penguinmanpenguinman
提出日時 2021-03-31 06:54:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,751 bytes
コンパイル時間 1,913 ms
コンパイル使用メモリ 205,852 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-05-09 15:17:42
合計ジャッジ時間 9,775 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 198 ms
5,376 KB
testcase_03 AC 197 ms
5,376 KB
testcase_04 AC 199 ms
5,376 KB
testcase_05 AC 199 ms
5,376 KB
testcase_06 AC 200 ms
5,376 KB
testcase_07 AC 200 ms
5,376 KB
testcase_08 AC 204 ms
5,376 KB
testcase_09 AC 204 ms
5,376 KB
testcase_10 AC 202 ms
5,376 KB
testcase_11 AC 202 ms
5,376 KB
testcase_12 AC 103 ms
5,376 KB
testcase_13 AC 103 ms
5,376 KB
testcase_14 AC 103 ms
5,376 KB
testcase_15 AC 103 ms
5,376 KB
testcase_16 AC 106 ms
5,376 KB
testcase_17 AC 103 ms
5,376 KB
testcase_18 AC 103 ms
5,376 KB
testcase_19 AC 103 ms
5,376 KB
testcase_20 AC 108 ms
5,376 KB
testcase_21 AC 103 ms
5,376 KB
testcase_22 AC 269 ms
13,696 KB
testcase_23 AC 262 ms
13,824 KB
testcase_24 AC 88 ms
5,376 KB
testcase_25 AC 87 ms
5,376 KB
testcase_26 AC 86 ms
5,448 KB
testcase_27 AC 83 ms
5,580 KB
testcase_28 AC 253 ms
13,824 KB
testcase_29 AC 255 ms
13,824 KB
testcase_30 AC 71 ms
5,376 KB
testcase_31 AC 76 ms
5,376 KB
testcase_32 AC 72 ms
5,376 KB
testcase_33 AC 72 ms
5,376 KB
testcase_34 AC 74 ms
5,376 KB
testcase_35 AC 101 ms
5,376 KB
testcase_36 AC 105 ms
5,376 KB
testcase_37 AC 108 ms
5,376 KB
testcase_38 AC 107 ms
5,376 KB
testcase_39 AC 107 ms
5,376 KB
testcase_40 AC 69 ms
5,376 KB
testcase_41 AC 69 ms
5,376 KB
testcase_42 AC 71 ms
5,376 KB
testcase_43 AC 70 ms
5,376 KB
testcase_44 AC 74 ms
5,376 KB
testcase_45 WA -
testcase_46 AC 3 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using std::cin;
using std::cout;
using std::endl;
using ll = long long;
using std::vector;
#define rep(i,j,k) for(int i=int(j); i<int(k); i++)
#define REP(i,j,k) for(int i=int(j); i<=int(k); i++)
const ll inf = (1ll<<60);

int main(){
    ll t; cin >> t;
    while(t--){
        ll N, M, K; cin >> N >> M >> K;
        vector<vector<ll>> data(N);
        rep(i,0,M){
            ll index, val; cin >> index >> val;
            data[index-1].push_back(val);
        }
        //(y-x)^2-(y-(x-1))^2 = 2x-2y-1
        vector<ll> sum(N);
        rep(i,0,N){
            for(auto p:data[i]){
                sum[i] += -p*2-1;
            }
        }
        ll left = -inf, right = inf;
        while(left+1 < right){
            ll mid = (left+right)/2;
            ll cnt = 0;
            rep(i,0,N){
                ll a = 2*data[i].size();
                //ax+sum[i] ≤ mid
                //ax ≤ mid-sum[i]
                //x ≤ (mid-sum[i])/a
                if(0 < a){
                    ll x = std::max(0ll, (mid-sum[i])/a);
                    cnt += x;
                }
                if(K <= cnt) break;
            }
            if(K <= cnt) right = mid;
            else left = mid;
        }
        ll ans = 0, cnt = 0;
        bool flag = false;
        rep(i,0,N){
            if(data[i].empty()){
                flag = true;
                continue;
            }
            ll a = 2*data[i].size();
            ll x = std::max(0ll, (left-sum[i])/a);
            ans += x*(x+1)/2*a+sum[i]*x;
            cnt += x;
        }
        if(flag && 0<=right) cnt = K;
        ans += (K-cnt)*right;
        rep(i,0,N){
            for(auto p:data[i]) ans += p*p;
        }
        cout << ans << endl;
    }
}
0