結果

問題 No.2422 regisys?
ユーザー simansiman
提出日時 2023-08-28 21:47:27
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 1,832 bytes
コンパイル時間 2,988 ms
コンパイル使用メモリ 144,300 KB
実行使用メモリ 10,628 KB
最終ジャッジ日時 2024-06-09 16:42:16
合計ジャッジ時間 12,492 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 94 ms
5,860 KB
testcase_32 AC 140 ms
5,436 KB
testcase_33 AC 84 ms
5,896 KB
testcase_34 AC 60 ms
5,376 KB
testcase_35 AC 103 ms
6,688 KB
testcase_36 AC 104 ms
5,376 KB
testcase_37 AC 142 ms
5,628 KB
testcase_38 AC 105 ms
5,376 KB
testcase_39 AC 71 ms
5,376 KB
testcase_40 AC 54 ms
5,376 KB
testcase_41 AC 74 ms
5,376 KB
testcase_42 AC 180 ms
9,912 KB
testcase_43 AC 99 ms
5,376 KB
testcase_44 AC 195 ms
9,732 KB
testcase_45 AC 162 ms
8,304 KB
testcase_46 AC 190 ms
9,972 KB
testcase_47 AC 120 ms
6,016 KB
testcase_48 AC 195 ms
10,628 KB
testcase_49 AC 155 ms
7,220 KB
testcase_50 AC 173 ms
10,456 KB
testcase_51 AC 251 ms
8,720 KB
testcase_52 AC 84 ms
6,288 KB
testcase_53 AC 198 ms
9,424 KB
testcase_54 AC 260 ms
10,168 KB
testcase_55 AC 194 ms
9,524 KB
testcase_56 AC 178 ms
7,156 KB
testcase_57 AC 294 ms
9,020 KB
testcase_58 AC 296 ms
9,024 KB
testcase_59 AC 288 ms
9,152 KB
testcase_60 AC 292 ms
9,148 KB
testcase_61 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

struct Node {
  int i;
  int value;

  Node(int i = -1, int value = -1) {
    this->i = i;
    this->value = value;
  }

  bool operator>(const Node &n) const {
    return value > n.value;
  }
};

int main() {
  int N, M;
  cin >> N >> M;

  vector<int> A(N);
  vector<int> B(N);
  for (int i = 0; i < N; ++i) {
    cin >> A[i];
  }
  for (int i = 0; i < N; ++i) {
    cin >> B[i];
  }

  vector<int> C[2];
  for (int i = 0; i < M; ++i) {
    int t, c;
    cin >> t >> c;
    C[t].push_back(c);
  }

  sort(C[0].begin(), C[0].end());
  priority_queue <Node, vector<Node>, greater<Node>> pque_a;
  bool checked[N];
  memset(checked, false, sizeof(checked));
  int cnt = 0;

  for (int i = 0; i < N; ++i) {
    pque_a.push(Node(i, A[i]));
  }

  priority_queue <Node, vector<Node>, greater<Node>> stock;
  for (int c : C[0]) {
    while (not pque_a.empty() && pque_a.top().value <= c) {
      int i = pque_a.top().i;
      pque_a.pop();

      stock.push(Node(i, -B[i]));
    }

    if (not stock.empty()) {
      Node n = stock.top();
      stock.pop();
      checked[n.i] = true;
      cnt++;
    }
  }

  sort(C[1].begin(), C[1].end());
  reverse(C[1].begin(), C[1].end());
  priority_queue <Node, vector<Node>, greater<Node>> pque_b;
  for (int i = 0; i < N; ++i) {
    if (not checked[i]) {
      pque_b.push(Node(i, -B[i]));
    }
  }

  for (int c : C[1]) {
    while (not pque_b.empty()) {
      int i = pque_b.top().i;
      pque_b.pop();

      if (B[i] <= c) {
        checked[i] = true;
        cnt++;
        break;
      }
    }
  }

  cout << N - cnt << endl;

  return 0;
}
0