結果

問題 No.1708 Quality of Contest
ユーザー bonKotsubonKotsu
提出日時 2022-07-23 12:46:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 262 ms / 2,000 ms
コード長 983 bytes
コンパイル時間 5,278 ms
コンパイル使用メモリ 265,188 KB
実行使用メモリ 16,644 KB
最終ジャッジ日時 2024-07-05 00:23:04
合計ジャッジ時間 11,009 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
8,064 KB
testcase_01 AC 6 ms
8,064 KB
testcase_02 AC 6 ms
8,064 KB
testcase_03 AC 9 ms
8,192 KB
testcase_04 AC 9 ms
8,320 KB
testcase_05 AC 10 ms
8,192 KB
testcase_06 AC 9 ms
8,192 KB
testcase_07 AC 8 ms
8,320 KB
testcase_08 AC 6 ms
8,064 KB
testcase_09 AC 241 ms
16,644 KB
testcase_10 AC 213 ms
11,312 KB
testcase_11 AC 231 ms
12,708 KB
testcase_12 AC 233 ms
13,064 KB
testcase_13 AC 218 ms
12,408 KB
testcase_14 AC 243 ms
13,180 KB
testcase_15 AC 245 ms
14,364 KB
testcase_16 AC 262 ms
14,264 KB
testcase_17 AC 235 ms
13,428 KB
testcase_18 AC 233 ms
13,420 KB
testcase_19 AC 238 ms
13,840 KB
testcase_20 AC 236 ms
13,224 KB
testcase_21 AC 240 ms
13,608 KB
testcase_22 AC 238 ms
13,216 KB
testcase_23 AC 250 ms
14,296 KB
testcase_24 AC 206 ms
11,736 KB
testcase_25 AC 203 ms
11,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define ll long long
#define rep(i, n) for (int i = 0; i < (n); i++)
#define P pair<int, int>
#define LP pair<ll, ll>
#define fi first
#define se second
#define pb push_back
#define eb emplace_back
#define all(s) s.begin(), s.end()
#define rall(s) s.rbegin(), s.rend()
template<class T>
void chmax(T& a, T b) { a = max(a, b); };
template<class T>
void chmin(T& a, T b) { a = min(a, b); };

int main() {
  int n, m; ll x;
  cin >> n >> m >> x;
  vector<int> t[200005];
  rep(i,n) {
    int a, b;
    cin >> a >> b;
    b--;
    t[b].pb(a);
  }
  vector<int> ord;
  rep(i,200005) {
    sort(rall(t[i]));
    if (t[i].size()) t[i][0] += x;
    rep(j, t[i].size()) ord.pb(t[i][j]);
  }
  sort(rall(ord));
  vector<ll> s(n+1);
  rep(i,n) s[i+1] = s[i] + ord[i];

  int k;
  cin >> k;
  ll ans = 0;
  rep(i,k) {
    int c;
    cin >> c;
    ans += s[c];
  }
  cout << ans << endl;
  return 0;
}
0