結果

問題 No.1708 Quality of Contest
ユーザー planesplanes
提出日時 2021-10-15 22:14:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 937 bytes
コンパイル時間 1,575 ms
コンパイル使用メモリ 176,376 KB
実行使用メモリ 17,412 KB
最終ジャッジ日時 2024-09-17 17:35:39
合計ジャッジ時間 6,507 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 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,944 KB
testcase_06 AC 5 ms
6,944 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 213 ms
17,412 KB
testcase_10 AC 189 ms
12,732 KB
testcase_11 AC 205 ms
11,052 KB
testcase_12 AC 202 ms
11,928 KB
testcase_13 AC 201 ms
10,256 KB
testcase_14 AC 219 ms
12,328 KB
testcase_15 AC 227 ms
15,396 KB
testcase_16 AC 216 ms
15,084 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 210 ms
13,300 KB
testcase_22 AC 205 ms
12,524 KB
testcase_23 AC 214 ms
15,308 KB
testcase_24 AC 175 ms
8,884 KB
testcase_25 AC 170 ms
8,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h> 
using namespace std;
using ll =long long;
#define all(v) v.begin(),v.end()
 #define rep(i,a,b) for(int i=a;i<b;i++)
#define rrep(i,a,b) for(int i=a;i>=b;i--)

int main() {
    ll N,M,X;cin>>N>>M>>X;
    vector<vector<ll>> vec(M,vector<ll> (0));
    for(ll i=0;i<N;i++) {
        ll A,B;cin>>A>>B;
        B--;
        vec[B].push_back(A);
    }

    for(ll i=0;i<M;i++) {
    pair<ll,ll> a={0,-1};
        for(ll j=0;j<vec[i].size();j++) {
            if(a.first<vec[i][j]) {
                a.first=vec[i][j];
                a.second=j;
            }
        }

    if(a.second>=0) vec[i][a.second]+=X;
    }

vector<ll> note(0);
for(ll i=0;i<M;i++) {
    for(auto x:vec[i]) note.push_back(x);
}
sort(all(note));
reverse(all(note));

vector<ll> r(N+1);
r[0]=0;
for(ll i=0;i<N;i++) {
    r[i+1]=r[i]+note[i];
}

ll K;cin>>K;
ll ans=0;
for(ll i=0;i<K;i++) {
    ll C;cin>>C;
    ans+=r[C];
}
cout<<ans<<endl;
}
0