結果

問題 No.2422 regisys?
ユーザー dyktr_06dyktr_06
提出日時 2023-06-21 16:42:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,692 bytes
コンパイル時間 2,364 ms
コンパイル使用メモリ 214,912 KB
実行使用メモリ 12,912 KB
最終ジャッジ日時 2024-06-29 02:26:07
合計ジャッジ時間 10,479 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 3 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 3 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 3 ms
5,376 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 WA -
testcase_30 AC 3 ms
5,376 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 47 ms
5,904 KB
testcase_39 AC 33 ms
5,376 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 2 ms
5,376 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());
    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