結果

問題 No.1708 Quality of Contest
ユーザー karinohitokarinohito
提出日時 2023-09-25 02:59:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 765 bytes
コンパイル時間 2,408 ms
コンパイル使用メモリ 210,168 KB
実行使用メモリ 17,416 KB
最終ジャッジ日時 2024-07-18 02:48:33
合計ジャッジ時間 8,422 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 5 ms
6,944 KB
testcase_04 AC 5 ms
6,944 KB
testcase_05 AC 5 ms
6,940 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 225 ms
17,416 KB
testcase_10 AC 192 ms
12,860 KB
testcase_11 AC 214 ms
11,048 KB
testcase_12 AC 204 ms
11,924 KB
testcase_13 AC 201 ms
10,268 KB
testcase_14 AC 202 ms
12,320 KB
testcase_15 AC 218 ms
15,396 KB
testcase_16 AC 216 ms
15,080 KB
testcase_17 AC 210 ms
12,788 KB
testcase_18 AC 201 ms
13,052 KB
testcase_19 AC 201 ms
14,072 KB
testcase_20 AC 201 ms
12,620 KB
testcase_21 AC 210 ms
13,176 KB
testcase_22 AC 209 ms
12,396 KB
testcase_23 AC 225 ms
15,188 KB
testcase_24 AC 182 ms
9,004 KB
testcase_25 AC 188 ms
8,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
#define rep(i,n) for(ll i=0;i<n;i++)
#define all(A) A.begin(),A.end()

int main(){
    ll N,M,X;
    cin>>N>>M>>X;
    vector<vector<ll>> A(M);
    rep(i,N){
        ll a,b;
        cin>>a>>b;
        A[b-1].push_back(a);
    }
    vector<ll> P;
    rep(i,M){
        if(ll(A[i].size())==0)continue;
        sort(all(A[i]));
        reverse(all(A[i]));
        ll cnt=1;
        for(auto a:A[i]){
            P.push_back(a+X*cnt);
            cnt=0;
        }
    }
    
    sort(all(P));
    reverse(all(P));
    vector<ll> PS(N+1,0);
    rep(i,N)PS[i+1]+=PS[i]+P[i];
    
    ll an=0;
    ll K;
    cin>>K;
    rep(i,K){
        ll c;
        cin>>c;
        an+=PS[c];
    }
    cout<<an<<endl;

}
0