結果

問題 No.2422 regisys?
ユーザー t98slidert98slider
提出日時 2023-08-12 15:28:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,213 bytes
コンパイル時間 1,745 ms
コンパイル使用メモリ 186,760 KB
実行使用メモリ 13,284 KB
最終ジャッジ日時 2024-04-30 09:25:38
合計ジャッジ時間 7,225 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 WA -
testcase_07 AC 1 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 WA -
testcase_12 AC 2 ms
6,940 KB
testcase_13 WA -
testcase_14 AC 1 ms
6,944 KB
testcase_15 WA -
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 WA -
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 60 ms
6,944 KB
testcase_32 AC 112 ms
9,404 KB
testcase_33 AC 46 ms
6,944 KB
testcase_34 AC 43 ms
6,944 KB
testcase_35 AC 56 ms
6,940 KB
testcase_36 AC 78 ms
7,768 KB
testcase_37 AC 117 ms
9,296 KB
testcase_38 AC 91 ms
8,692 KB
testcase_39 AC 59 ms
6,944 KB
testcase_40 WA -
testcase_41 AC 55 ms
6,940 KB
testcase_42 AC 94 ms
7,188 KB
testcase_43 AC 73 ms
7,020 KB
testcase_44 AC 112 ms
7,936 KB
testcase_45 WA -
testcase_46 AC 114 ms
7,880 KB
testcase_47 WA -
testcase_48 AC 94 ms
7,040 KB
testcase_49 WA -
testcase_50 AC 79 ms
6,940 KB
testcase_51 AC 192 ms
12,440 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 176 ms
12,300 KB
testcase_55 AC 119 ms
8,780 KB
testcase_56 AC 134 ms
10,800 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int solve(vector<pair<int,int>> a, vector<int> a1, vector<int> b){
    int n = a.size();
    int ans = 0;
    sort(a.rbegin(), a.rend());
    set<int> S;
    S.insert(1 << 30);
    priority_queue<int> pq;
    for(int i = 0; i < a1.size(); i++) pq.emplace(a1[i]);
    for(auto &&v : b) S.insert(v);
    for(int i = 0; i < n; i++){
        int v, v2;
        tie(v, v2) = a[i];
        if(!pq.empty() && pq.top() >= v){
            pq.pop();
            continue;
        }
        auto it = S.lower_bound(v2);
        if(*it == (1 << 30)) ans++;
        else S.erase(it);
    }
    return ans;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, m, t, v;
    cin >> n >> m;
    vector<pair<int,int>> a(n);
    vector<int> a1, a2;
    for(int i = 0; i < n; i++) cin >> a[i].first;
    for(int i = 0; i < n; i++) cin >> a[i].second;
    for(int i = 0; i < m; i++){
        cin >> t >> v;
        if(t == 0) a1.emplace_back(v);
        else a2.emplace_back(v);
    }
    int ans = solve(a, a1, a2);
    for(int i = 0; i < n; i++) swap(a[i].first, a[i].second);
    ans = min(ans, solve(a, a2, a1));
    cout << ans << '\n';
}
0