結果

問題 No.1708 Quality of Contest
ユーザー Nzt3Nzt3
提出日時 2022-09-28 17:18:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 753 bytes
コンパイル時間 2,205 ms
コンパイル使用メモリ 212,236 KB
実行使用メモリ 16,288 KB
最終ジャッジ日時 2024-06-02 01:34:41
合計ジャッジ時間 5,497 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 87 ms
16,288 KB
testcase_10 AC 75 ms
10,952 KB
testcase_11 AC 88 ms
8,904 KB
testcase_12 AC 88 ms
9,908 KB
testcase_13 AC 87 ms
8,048 KB
testcase_14 AC 91 ms
10,568 KB
testcase_15 AC 100 ms
14,008 KB
testcase_16 AC 98 ms
13,668 KB
testcase_17 AC 91 ms
10,940 KB
testcase_18 AC 93 ms
11,228 KB
testcase_19 AC 94 ms
12,360 KB
testcase_20 AC 91 ms
10,752 KB
testcase_21 AC 100 ms
11,700 KB
testcase_22 AC 89 ms
10,688 KB
testcase_23 AC 95 ms
13,776 KB
testcase_24 AC 79 ms
6,640 KB
testcase_25 AC 79 ms
6,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N,M;
  long long X;
  cin>>N>>M>>X;
  vector<vector<int>>P(M);
  for(int i=0;i<N;i++){
    int A,B;
    cin>>A>>B;
    P[B-1].push_back(A);
  }
  vector<long long>Ps;
  for(int i=0;i<M;i++){
    sort(P[i].begin(),P[i].end());
    reverse(P[i].begin(),P[i].end());
    for(int j=0;j<P[i].size();j++){
      if(j==0)Ps.push_back(P[i][j]+X);
      else Ps.push_back(P[i][j]);
    }
  }
  sort(Ps.begin(),Ps.end());
  Ps.push_back(0);
  reverse(Ps.begin(),Ps.end());
  for(int i=1;i<=N;i++){
    Ps[i]+=Ps[i-1];
  }

  int K;
  cin>>K;
  long long ans=0;
  for(int i=0;i<K;i++){
    int t;
    cin>>t;
    ans+=Ps[t];
  }
  cout<<ans<<'\n';
}
0