結果

問題 No.1708 Quality of Contest
ユーザー icchiposticchipost
提出日時 2021-10-17 12:57:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 683 bytes
コンパイル時間 1,754 ms
コンパイル使用メモリ 178,648 KB
実行使用メモリ 16,776 KB
最終ジャッジ日時 2024-09-17 19:40:21
合計ジャッジ時間 6,172 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 5 ms
6,940 KB
testcase_05 AC 5 ms
6,940 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 196 ms
16,776 KB
testcase_10 AC 178 ms
11,312 KB
testcase_11 AC 243 ms
9,372 KB
testcase_12 AC 191 ms
10,268 KB
testcase_13 AC 187 ms
8,428 KB
testcase_14 AC 205 ms
10,976 KB
testcase_15 AC 198 ms
14,364 KB
testcase_16 AC 199 ms
14,028 KB
testcase_17 AC 189 ms
11,296 KB
testcase_18 AC 187 ms
11,588 KB
testcase_19 AC 196 ms
12,592 KB
testcase_20 AC 197 ms
11,236 KB
testcase_21 AC 194 ms
11,928 KB
testcase_22 AC 201 ms
10,924 KB
testcase_23 AC 199 ms
14,144 KB
testcase_24 AC 176 ms
6,996 KB
testcase_25 AC 178 ms
7,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  int n, m, x;
  cin >> n >> m >> x;
  vector<vector<int>> v(m);
  rep(i, n) {
    int a, b;
    cin >> a >> b;
    v[b - 1].push_back(a);
  }
  rep(i, m) {
    sort(v[i].rbegin(), v[i].rend());
    if (v[i].size()) v[i].front() += x;
  }
  vector<int> t;
  rep(i, m) for (auto a : v[i]) t.push_back(a);
  sort(t.rbegin(), t.rend());
  vector<ll> s(n + 1);
  rep(i, n) s[i + 1] += s[i] + t[i];
  int k;
  cin >> k;
  ll ans = 0;
  rep(i, k) {
    int c;
    cin >> c;
    ans += s[c];
  }
  cout << ans << endl;
  return 0;
}
0