結果

問題 No.1708 Quality of Contest
ユーザー bonKotsubonKotsu
提出日時 2022-07-23 12:32:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 475 ms / 2,000 ms
コード長 1,834 bytes
コンパイル時間 4,610 ms
コンパイル使用メモリ 274,868 KB
実行使用メモリ 28,212 KB
最終ジャッジ日時 2024-07-05 00:07:23
合計ジャッジ時間 14,458 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
8,144 KB
testcase_01 AC 5 ms
8,224 KB
testcase_02 AC 4 ms
8,068 KB
testcase_03 AC 11 ms
8,432 KB
testcase_04 AC 11 ms
8,624 KB
testcase_05 AC 11 ms
8,376 KB
testcase_06 AC 9 ms
8,520 KB
testcase_07 AC 9 ms
8,496 KB
testcase_08 AC 4 ms
8,144 KB
testcase_09 AC 370 ms
28,212 KB
testcase_10 AC 294 ms
16,480 KB
testcase_11 AC 435 ms
18,384 KB
testcase_12 AC 429 ms
19,772 KB
testcase_13 AC 376 ms
17,920 KB
testcase_14 AC 419 ms
20,272 KB
testcase_15 AC 475 ms
22,860 KB
testcase_16 AC 450 ms
23,016 KB
testcase_17 AC 390 ms
20,260 KB
testcase_18 AC 374 ms
20,512 KB
testcase_19 AC 395 ms
21,696 KB
testcase_20 AC 378 ms
20,060 KB
testcase_21 AC 460 ms
21,080 KB
testcase_22 AC 447 ms
20,044 KB
testcase_23 AC 459 ms
22,796 KB
testcase_24 AC 306 ms
17,032 KB
testcase_25 AC 310 ms
16,896 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> a(n), b(n);
  vector<int> type[200005];
  rep(i,n) {
    cin >> a[i] >> b[i];
    b[i]--;
    type[b[i]].pb(a[i]);
  }
  rep(i,200005) {
    sort(all(type[i]));
    if (type[i].size()) type[i].pop_back();
  }
  int k;
  cin >> k;
  vector<int> c(k);
  rep(i,k) cin >> c[i];
  sort(all(c));
  priority_queue<P, vector<P>> q1, q2;
  rep(i,n) {
    q1.push({a[i]+x,b[i]});
  }
  set<int> used;
  vector<int> ord(n);
  int i = 0;
  while (i < n) {
    ll cand1 = 0, cand2 = 0;
    int val1 = 0, g1 = 0, val2 = 0, g2 = 0;
    bool flag1 = false, flag2 = true;
    if (!q1.empty()) {
      P p = q1.top(); q1.pop();
      val1 = p.fi, g1 = p.se;
      if (used.find(g1) != used.end()) continue;
      cand1 = val1;
      flag1 = true;
    }
    if (!q2.empty()) {
      P p = q2.top(); q2.pop();
      val2 = p.fi, g2 = p.se;
      cand2 = val2;
    }
    if (cand2 >= cand1) {
      ord[i] = cand2;
      i++;
      if (flag1) q1.push({val1, g1});
    } else {
      ord[i] = cand1;
      i++;
      for (auto val : type[g1]) q2.push({val,g1}); 
      used.insert(g1);
      if (flag2) q2.push({val2, g2});
    }
  }
  ll ans = 0;
  for (int i = 1; i <= n; i++) {
    auto ind = lower_bound(all(c),i)-c.begin();
    ans += (ll)ord[i-1]*(k-ind);
  }
  cout << ans << endl;


  return 0;
}
0