結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 0 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 1 ms
5,248 KB
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 1 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 1 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 43 ms
5,824 KB
testcase_32 AC 76 ms
9,172 KB
testcase_33 AC 36 ms
5,316 KB
testcase_34 AC 35 ms
6,144 KB
testcase_35 AC 42 ms
5,724 KB
testcase_36 AC 60 ms
7,724 KB
testcase_37 AC 89 ms
9,000 KB
testcase_38 AC 65 ms
8,564 KB
testcase_39 AC 46 ms
6,784 KB
testcase_40 AC 26 ms
5,248 KB
testcase_41 AC 42 ms
6,528 KB
testcase_42 AC 70 ms
7,180 KB
testcase_43 AC 58 ms
6,976 KB
testcase_44 AC 86 ms
8,104 KB
testcase_45 AC 70 ms
7,132 KB
testcase_46 AC 87 ms
7,948 KB
testcase_47 AC 61 ms
7,080 KB
testcase_48 AC 73 ms
7,248 KB
testcase_49 AC 79 ms
8,164 KB
testcase_50 AC 63 ms
6,808 KB
testcase_51 AC 149 ms
12,172 KB
testcase_52 AC 35 ms
5,368 KB
testcase_53 AC 91 ms
8,352 KB
testcase_54 AC 137 ms
12,004 KB
testcase_55 AC 97 ms
8,912 KB
testcase_56 AC 105 ms
10,624 KB
testcase_57 AC 177 ms
13,052 KB
testcase_58 AC 173 ms
13,060 KB
testcase_59 AC 177 ms
12,996 KB
testcase_60 AC 179 ms
13,060 KB
testcase_61 AC 2 ms
5,248 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