結果

問題 No.2422 regisys?
ユーザー pockynypockyny
提出日時 2023-08-13 17:13:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 416 ms / 2,000 ms
コード長 955 bytes
コンパイル時間 920 ms
コンパイル使用メモリ 89,448 KB
実行使用メモリ 22,152 KB
最終ジャッジ日時 2024-11-21 13:23:50
合計ジャッジ時間 9,899 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 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 2 ms
5,248 KB
testcase_08 AC 2 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 1 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 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 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 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 109 ms
8,184 KB
testcase_32 AC 247 ms
14,492 KB
testcase_33 AC 99 ms
7,416 KB
testcase_34 AC 88 ms
8,584 KB
testcase_35 AC 115 ms
7,976 KB
testcase_36 AC 177 ms
11,724 KB
testcase_37 AC 215 ms
14,416 KB
testcase_38 AC 171 ms
13,428 KB
testcase_39 AC 114 ms
10,240 KB
testcase_40 AC 63 ms
6,188 KB
testcase_41 AC 107 ms
9,376 KB
testcase_42 AC 191 ms
11,144 KB
testcase_43 AC 142 ms
10,492 KB
testcase_44 AC 217 ms
12,740 KB
testcase_45 AC 177 ms
10,684 KB
testcase_46 AC 215 ms
12,460 KB
testcase_47 AC 155 ms
10,568 KB
testcase_48 AC 199 ms
11,028 KB
testcase_49 AC 202 ms
12,740 KB
testcase_50 AC 177 ms
10,540 KB
testcase_51 AC 363 ms
20,628 KB
testcase_52 AC 93 ms
7,144 KB
testcase_53 AC 227 ms
13,236 KB
testcase_54 AC 346 ms
20,424 KB
testcase_55 AC 240 ms
14,104 KB
testcase_56 AC 257 ms
17,400 KB
testcase_57 AC 413 ms
22,148 KB
testcase_58 AC 414 ms
22,024 KB
testcase_59 AC 416 ms
22,152 KB
testcase_60 AC 412 ms
21,964 KB
testcase_61 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;
typedef long long ll;
ll a[200010],b[200010],t[200010],c[200010];
int main(){
    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());
    multiset<ll> ms0,ms1;
    for(i=0;i<m;i++){
        cin >> t[i] >> c[i];
        if(t[i]==0) ms0.insert(c[i]);
        else ms1.insert(c[i]);
    }
    int ans = 0,cnt = 0;
    for(i=n - 1;i>=0;i--){
        while(ms0.size() && v[i].first<=*ms0.rbegin()){
            cnt++;
            ms0.erase(ms0.find(*ms0.rbegin()));
        }
        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