結果

問題 No.2422 regisys?
ユーザー tnakao0123tnakao0123
提出日時 2023-08-21 19:09:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 1,336 bytes
コンパイル時間 888 ms
コンパイル使用メモリ 64,476 KB
実行使用メモリ 14,920 KB
最終ジャッジ日時 2024-05-09 01:03:30
合計ジャッジ時間 9,231 ms
ジャッジサーバーID
(参考情報)
judge5 / 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 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 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 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 61 ms
7,168 KB
testcase_32 AC 74 ms
5,980 KB
testcase_33 AC 59 ms
7,424 KB
testcase_34 AC 31 ms
5,376 KB
testcase_35 AC 76 ms
8,576 KB
testcase_36 AC 54 ms
5,376 KB
testcase_37 AC 79 ms
6,348 KB
testcase_38 AC 54 ms
5,376 KB
testcase_39 AC 38 ms
5,376 KB
testcase_40 AC 36 ms
5,760 KB
testcase_41 AC 39 ms
5,376 KB
testcase_42 AC 143 ms
12,928 KB
testcase_43 AC 56 ms
5,636 KB
testcase_44 AC 158 ms
12,672 KB
testcase_45 AC 124 ms
11,392 KB
testcase_46 AC 153 ms
12,544 KB
testcase_47 AC 75 ms
7,328 KB
testcase_48 AC 172 ms
14,720 KB
testcase_49 AC 96 ms
8,268 KB
testcase_50 AC 159 ms
14,720 KB
testcase_51 AC 166 ms
11,804 KB
testcase_52 AC 64 ms
8,064 KB
testcase_53 AC 149 ms
12,284 KB
testcase_54 AC 200 ms
14,920 KB
testcase_55 AC 162 ms
13,604 KB
testcase_56 AC 114 ms
9,468 KB
testcase_57 AC 175 ms
11,560 KB
testcase_58 AC 175 ms
11,652 KB
testcase_59 AC 175 ms
11,528 KB
testcase_60 AC 179 ms
11,652 KB
testcase_61 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2422.cc:  No.2422 regisys? - yukicoder
 */

#include<cstdio>
#include<vector>
#include<set>
#include<algorithm>
#include<utility>
 
using namespace std;

/* constant */

const int MAX_N = 200000;
const int MAX_M = 200000;

/* typedef */

typedef vector<int> vi;
typedef pair<int,int> pii;
typedef multiset<int> msi;

/* global variables */

int as[MAX_N], bs[MAX_N];
pii ps[MAX_N];
vi tcs[2];

/* subroutines */

/* main */

int main() {
  int n, m;
  scanf("%d%d", &n, &m);

  for (int i = 0; i < n; i++) scanf("%d", as + i);
  for (int i = 0; i < n; i++) scanf("%d", bs + i);
  for (int i = 0; i < n; i++) ps[i] = pii(as[i], bs[i]);
  sort(ps, ps + n);

  for (int i = 0; i < m; i++) {
    int ti, ci;
    scanf("%d%d", &ti, &ci);
    tcs[ti].push_back(ci);
  }

  vi &cs0 = tcs[0], &cs1 = tcs[1];
  sort(cs0.begin(), cs0.end());
  sort(cs1.begin(), cs1.end());

  msi bcs;
  int s = 0, k = 0;
  for (auto c0: cs0) {
    while (k < n && ps[k].first <= c0) bcs.insert(ps[k++].second);

    if (! bcs.empty()) {
      s++;
      auto sit = bcs.end();
      bcs.erase(--sit);
    }
  }

  while (k < n) bcs.insert(ps[k++].second);

  for (auto c1: cs1) {
    auto sit = bcs.upper_bound(c1);
    if (sit != bcs.begin()) {
      s++;
      bcs.erase(--sit);
    }
  }

  printf("%d\n", n - s);
  return 0;
}
0