結果

問題 No.1708 Quality of Contest
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-06-03 01:57:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 988 bytes
コンパイル時間 965 ms
コンパイル使用メモリ 114,804 KB
実行使用メモリ 18,980 KB
最終ジャッジ日時 2024-06-09 03:06:40
合計ジャッジ時間 6,892 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 5 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 205 ms
18,980 KB
testcase_10 AC 204 ms
14,292 KB
testcase_11 AC 207 ms
11,504 KB
testcase_12 AC 206 ms
12,592 KB
testcase_13 AC 201 ms
10,536 KB
testcase_14 AC 205 ms
13,108 KB
testcase_15 AC 218 ms
16,956 KB
testcase_16 AC 225 ms
16,564 KB
testcase_17 AC 208 ms
13,684 KB
testcase_18 AC 208 ms
14,000 KB
testcase_19 AC 207 ms
15,088 KB
testcase_20 AC 206 ms
13,476 KB
testcase_21 AC 209 ms
14,300 KB
testcase_22 AC 207 ms
13,196 KB
testcase_23 AC 218 ms
16,688 KB
testcase_24 AC 198 ms
9,036 KB
testcase_25 AC 197 ms
8,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;
using ll = long long;

int main(){

    ll N, M, X, A, B, K, ans=0;
    cin >> N >> M >> X;
    vector<priority_queue<ll>> v(M+1);
    priority_queue<ll> que;
    for (int i=0; i<N; i++){
        cin >> A >> B;
        v[B].push(A);
    }

    for (int i=1; i<=M; i++){
        bool f=1;
        while(!v[i].empty()){
            A = v[i].top();
            v[i].pop();
            if (f){
                A += X;
                f=0;
            }
            que.push(A);
        }
    }
    vector<ll> S(N+1);
    for (int i=1; i<=N; i++){
        A = que.top();
        que.pop();
        S[i] += S[i-1] + A;
    }
    cin >> K;
    for (int i=0; i<K; i++){
        cin >> A;
        ans += S[A];
    }

    cout << ans << endl;

    return 0;
}
0