結果

問題 No.2422 regisys?
ユーザー pockynypockyny
提出日時 2023-08-13 17:13:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 393 ms / 2,000 ms
コード長 955 bytes
コンパイル時間 822 ms
コンパイル使用メモリ 90,372 KB
実行使用メモリ 22,148 KB
最終ジャッジ日時 2024-05-01 09:55:41
合計ジャッジ時間 9,445 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,620 KB
testcase_01 AC 2 ms
7,632 KB
testcase_02 AC 2 ms
7,492 KB
testcase_03 AC 2 ms
7,624 KB
testcase_04 AC 2 ms
7,620 KB
testcase_05 AC 2 ms
7,632 KB
testcase_06 AC 2 ms
7,624 KB
testcase_07 AC 2 ms
7,628 KB
testcase_08 AC 2 ms
7,620 KB
testcase_09 AC 1 ms
7,624 KB
testcase_10 AC 2 ms
7,752 KB
testcase_11 AC 2 ms
7,620 KB
testcase_12 AC 2 ms
7,620 KB
testcase_13 AC 3 ms
7,636 KB
testcase_14 AC 2 ms
7,508 KB
testcase_15 AC 2 ms
7,492 KB
testcase_16 AC 2 ms
7,624 KB
testcase_17 AC 2 ms
7,752 KB
testcase_18 AC 2 ms
7,628 KB
testcase_19 AC 2 ms
7,756 KB
testcase_20 AC 2 ms
7,492 KB
testcase_21 AC 2 ms
7,624 KB
testcase_22 AC 2 ms
7,632 KB
testcase_23 AC 3 ms
7,620 KB
testcase_24 AC 2 ms
7,624 KB
testcase_25 AC 3 ms
7,752 KB
testcase_26 AC 2 ms
7,748 KB
testcase_27 AC 3 ms
7,624 KB
testcase_28 AC 2 ms
7,760 KB
testcase_29 AC 3 ms
7,628 KB
testcase_30 AC 2 ms
7,632 KB
testcase_31 AC 99 ms
10,828 KB
testcase_32 AC 193 ms
16,000 KB
testcase_33 AC 88 ms
9,964 KB
testcase_34 AC 84 ms
11,840 KB
testcase_35 AC 101 ms
10,704 KB
testcase_36 AC 137 ms
14,280 KB
testcase_37 AC 192 ms
15,744 KB
testcase_38 AC 154 ms
15,592 KB
testcase_39 AC 104 ms
12,956 KB
testcase_40 AC 55 ms
9,292 KB
testcase_41 AC 102 ms
12,404 KB
testcase_42 AC 175 ms
13,788 KB
testcase_43 AC 126 ms
12,876 KB
testcase_44 AC 202 ms
14,500 KB
testcase_45 AC 159 ms
12,892 KB
testcase_46 AC 194 ms
14,280 KB
testcase_47 AC 150 ms
12,660 KB
testcase_48 AC 190 ms
12,612 KB
testcase_49 AC 195 ms
14,508 KB
testcase_50 AC 167 ms
12,072 KB
testcase_51 AC 358 ms
21,780 KB
testcase_52 AC 86 ms
9,672 KB
testcase_53 AC 211 ms
15,240 KB
testcase_54 AC 321 ms
21,540 KB
testcase_55 AC 217 ms
16,200 KB
testcase_56 AC 249 ms
18,496 KB
testcase_57 AC 383 ms
22,148 KB
testcase_58 AC 393 ms
22,044 KB
testcase_59 AC 380 ms
22,092 KB
testcase_60 AC 373 ms
22,144 KB
testcase_61 AC 3 ms
7,756 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