結果

問題 No.1708 Quality of Contest
ユーザー rogi52rogi52
提出日時 2022-10-06 18:58:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 744 bytes
コンパイル時間 2,764 ms
コンパイル使用メモリ 212,328 KB
実行使用メモリ 17,568 KB
最終ジャッジ日時 2024-06-11 06:07:06
合計ジャッジ時間 6,898 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 5 ms
6,940 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 127 ms
17,568 KB
testcase_10 AC 97 ms
12,752 KB
testcase_11 AC 139 ms
11,064 KB
testcase_12 AC 146 ms
11,940 KB
testcase_13 AC 130 ms
10,276 KB
testcase_14 AC 140 ms
12,352 KB
testcase_15 AC 149 ms
15,416 KB
testcase_16 AC 144 ms
15,104 KB
testcase_17 AC 123 ms
12,816 KB
testcase_18 AC 135 ms
13,076 KB
testcase_19 AC 134 ms
13,972 KB
testcase_20 AC 127 ms
12,772 KB
testcase_21 AC 138 ms
13,068 KB
testcase_22 AC 136 ms
12,424 KB
testcase_23 AC 142 ms
15,208 KB
testcase_24 AC 89 ms
8,904 KB
testcase_25 AC 90 ms
8,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);
    
    ll N,M,X; cin >> N >> M >> X;
    vector<vector<ll>> col(M);
    rep(i,N) {
        ll A,B; cin >> A >> B; B--;
        col[B].push_back(A);
    }

    vector<ll> D;
    rep(i,M) if(!col[i].empty()) {
        sort(col[i].begin(), col[i].end());
        col[i].back() += X;
        for(ll x : col[i]) D.push_back(x);
    }
    sort(D.rbegin(), D.rend());

    vector<ll> sumD(N + 1, 0);
    rep(i,N) sumD[i + 1] += sumD[i] + D[i];
    ll ans = 0;
    int K; cin >> K;
    rep(i,K) {
        int c; cin >> c;
        ans += sumD[c];
    }
    cout << ans << endl;
}
0