結果

問題 No.2422 regisys?
ユーザー dyktr_06dyktr_06
提出日時 2023-06-21 16:44:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 1,726 bytes
コンパイル時間 2,430 ms
コンパイル使用メモリ 215,664 KB
実行使用メモリ 12,912 KB
最終ジャッジ日時 2024-09-19 13:54:16
合計ジャッジ時間 7,468 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,948 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 3 ms
6,940 KB
testcase_30 AC 3 ms
6,944 KB
testcase_31 AC 48 ms
6,940 KB
testcase_32 AC 65 ms
6,940 KB
testcase_33 AC 46 ms
6,944 KB
testcase_34 AC 29 ms
6,944 KB
testcase_35 AC 55 ms
7,604 KB
testcase_36 AC 48 ms
6,944 KB
testcase_37 AC 69 ms
7,524 KB
testcase_38 AC 51 ms
6,940 KB
testcase_39 AC 37 ms
6,944 KB
testcase_40 AC 30 ms
6,944 KB
testcase_41 AC 35 ms
6,940 KB
testcase_42 AC 91 ms
11,316 KB
testcase_43 AC 48 ms
6,944 KB
testcase_44 AC 100 ms
11,600 KB
testcase_45 AC 83 ms
9,600 KB
testcase_46 AC 99 ms
11,572 KB
testcase_47 AC 62 ms
7,360 KB
testcase_48 AC 99 ms
12,196 KB
testcase_49 AC 74 ms
8,520 KB
testcase_50 AC 90 ms
11,692 KB
testcase_51 AC 117 ms
11,396 KB
testcase_52 AC 42 ms
7,168 KB
testcase_53 AC 95 ms
11,336 KB
testcase_54 AC 121 ms
12,912 KB
testcase_55 AC 93 ms
11,168 KB
testcase_56 AC 83 ms
9,256 KB
testcase_57 AC 142 ms
11,992 KB
testcase_58 AC 136 ms
12,116 KB
testcase_59 AC 139 ms
11,988 KB
testcase_60 AC 153 ms
12,116 KB
testcase_61 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int n, m; cin >> n >> m;
    vector<int> a(n), b(n);
    for(int i = 0; i < n; i++){
        cin >> a[i];
    }
    for(int i = 0; i < n; i++){
        cin >> b[i];
    }
    vector<pair<int, int>> p(n);
    for(int i = 0; i < n; i++){
        p[i] = {a[i], b[i]};
    }
    vector<int> t(m), c(m);
    vector<int> zero, one;
    for(int i = 0; i < m; i++){
        cin >> t[i] >> c[i];
        if(t[i] == 0) zero.push_back(c[i]);
        else one.push_back(c[i]);
    }

    sort(zero.begin(), zero.end());
    sort(one.begin(), one.end());
    priority_queue<pair<int, int>, vector<pair<int, int>>, greater<pair<int, int>>> q0_min, q1_min;
    priority_queue<pair<int, int>> q1_max;
    for(int i = 0; i < n; i++){
        q0_min.push(p[i]);
    }

    for(int i = 0; i < (int) zero.size(); i++){
        while(q0_min.size()){
            auto [x, y] = q0_min.top();
            if(x <= zero[i]){
                q1_max.emplace(y, x);
                q0_min.pop();
            }else{
                break;
            }
        }
        if(!q1_max.empty()){
            q1_max.pop();
        }
    }

    while(q0_min.size()){
        auto [x, y] = q0_min.top();
        q1_min.emplace(y, x);
        q0_min.pop();
    }
    while(q1_max.size()){
        auto [y, x] = q1_max.top();
        q1_min.emplace(y, x);
        q1_max.pop();
    }

    for(int i = 0; i < (int) one.size(); i++){
        if(!q1_min.empty()){
            auto [y, x] = q1_min.top();
            if(y <= one[i]){
                q1_min.pop();
            }
        }
    }
    int ans = q1_min.size();
    cout << ans << endl;
}
0