結果

問題 No.2422 regisys?
ユーザー throughthrough
提出日時 2023-08-12 15:19:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,241 bytes
コンパイル時間 2,331 ms
コンパイル使用メモリ 209,812 KB
実行使用メモリ 18,984 KB
最終ジャッジ日時 2024-04-30 08:53:14
合計ジャッジ時間 7,566 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 WA -
testcase_02 AC 2 ms
6,944 KB
testcase_03 WA -
testcase_04 AC 2 ms
6,940 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
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 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 WA -
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 2 ms
6,940 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 2 ms
6,940 KB
testcase_30 WA -
testcase_31 AC 49 ms
7,404 KB
testcase_32 WA -
testcase_33 AC 42 ms
7,396 KB
testcase_34 WA -
testcase_35 AC 48 ms
7,784 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 27 ms
6,944 KB
testcase_41 WA -
testcase_42 AC 79 ms
13,020 KB
testcase_43 WA -
testcase_44 AC 94 ms
12,984 KB
testcase_45 AC 75 ms
11,864 KB
testcase_46 AC 94 ms
13,544 KB
testcase_47 WA -
testcase_48 AC 78 ms
12,844 KB
testcase_49 WA -
testcase_50 AC 64 ms
12,488 KB
testcase_51 WA -
testcase_52 AC 39 ms
7,532 KB
testcase_53 AC 103 ms
15,016 KB
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
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;
using P = pair<ll, ll>;
using T = tuple<ll, ll, ll>;
// #include <atcoder/all>
// using namespace atcoder;
// using mint = modint1000000007;
#define rep(i, n) for(ll i = 0; i < n; i++)

int main() {
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);
    
    ll n,m; cin >> n >> m;
    priority_queue<P,vector<P>,greater<P>> a, b, mem;
    rep(i,n) {
        ll aa; cin >> aa;
        a.push(P(aa,i));
    }
    rep(i,n) {
        ll bb; cin >> bb;
        b.push(P(bb,i));
    }
    rep(i,m) {
        ll t,c; cin >> t >> c;
        mem.push(P(c,t));
    }
    ll ans = 0;
    set<ll> bought;
    while( !mem.empty() ) {
        auto [money,t] = mem.top(); mem.pop();
        if( t == 0 ) {
            while( !a.empty() && bought.count(a.top().second) ) a.pop();
            if( !a.empty() && a.top().first <= money ) {
                ans++;
                a.pop();
            }
        }
        else {
            while( !b.empty() && bought.count(b.top().second) ) b.pop();
            if( !b.empty() && b.top().first <= money ) {
                ans++;
                b.pop();
            }
        }
    }
    cout << n-ans << endl;
    
    return 0;
}
0