結果

問題 No.2422 regisys?
ユーザー pockynypockyny
提出日時 2023-08-13 17:18:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 1,127 bytes
コンパイル時間 1,469 ms
コンパイル使用メモリ 100,128 KB
実行使用メモリ 13,052 KB
最終ジャッジ日時 2024-05-01 10:00:41
合計ジャッジ時間 6,879 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,948 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,948 KB
testcase_19 AC 3 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 3 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 3 ms
6,940 KB
testcase_30 AC 3 ms
6,940 KB
testcase_31 AC 45 ms
6,940 KB
testcase_32 AC 97 ms
9,172 KB
testcase_33 AC 39 ms
6,940 KB
testcase_34 AC 38 ms
6,944 KB
testcase_35 AC 47 ms
6,944 KB
testcase_36 AC 69 ms
7,852 KB
testcase_37 AC 99 ms
9,128 KB
testcase_38 AC 78 ms
8,564 KB
testcase_39 AC 52 ms
8,244 KB
testcase_40 AC 26 ms
6,944 KB
testcase_41 AC 47 ms
6,944 KB
testcase_42 AC 79 ms
7,172 KB
testcase_43 AC 63 ms
8,408 KB
testcase_44 AC 92 ms
8,744 KB
testcase_45 AC 73 ms
7,136 KB
testcase_46 AC 91 ms
7,940 KB
testcase_47 AC 69 ms
8,316 KB
testcase_48 AC 80 ms
7,864 KB
testcase_49 AC 90 ms
8,164 KB
testcase_50 AC 69 ms
7,844 KB
testcase_51 AC 169 ms
12,280 KB
testcase_52 AC 38 ms
6,948 KB
testcase_53 AC 99 ms
9,176 KB
testcase_54 AC 162 ms
12,132 KB
testcase_55 AC 103 ms
9,376 KB
testcase_56 AC 121 ms
11,368 KB
testcase_57 AC 204 ms
13,052 KB
testcase_58 AC 203 ms
12,924 KB
testcase_59 AC 204 ms
13,000 KB
testcase_60 AC 204 ms
12,984 KB
testcase_61 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#include <iostream>
#include <vector>
#include <set>
#include <algorithm>

using namespace std;
typedef int ll;
ll a[200010],b[200010],t[200010],c[200010];
int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    int i,n,m; cin >> n >> m;
    vector<pair<ll,ll>> v;
    for(i=0;i<n;i++) cin >> a[i];
    for(i=0;i<n;i++) cin >> b[i];
    for(i=0;i<n;i++){
        v.push_back({a[i],b[i]});
    }
    sort(v.begin(),v.end());
    vector<ll> ms0;
    multiset<ll> ms1;
    for(i=0;i<m;i++){
        cin >> t[i] >> c[i];
        if(t[i]==0) ms0.push_back(c[i]);
        else ms1.insert(c[i]);
    }
    sort(ms0.begin(),ms0.end());
    int ans = 0,cnt = 0;
    for(i=n - 1;i>=0;i--){
        while(ms0.size() && v[i].first<=ms0.back()){
            cnt++;
            ms0.pop_back();
        }
        auto it = ms1.lower_bound(v[i].second);
        if(it!=ms1.end()){
            ans++;
            ms1.erase(it);
        }else if(cnt){
            ans++;
            cnt--;
        }
    }
    cout << n - ans << "\n";
}
0