結果

問題 No.2422 regisys?
ユーザー throughthrough
提出日時 2023-08-12 15:21:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,335 bytes
コンパイル時間 2,613 ms
コンパイル使用メモリ 215,080 KB
実行使用メモリ 21,492 KB
最終ジャッジ日時 2024-04-30 08:59:52
合計ジャッジ時間 9,577 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 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,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 3 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 3 ms
6,940 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 71 ms
8,084 KB
testcase_32 AC 130 ms
10,188 KB
testcase_33 AC 53 ms
7,528 KB
testcase_34 AC 48 ms
6,940 KB
testcase_35 AC 63 ms
8,000 KB
testcase_36 AC 87 ms
7,776 KB
testcase_37 AC 139 ms
10,948 KB
testcase_38 AC 86 ms
8,492 KB
testcase_39 AC 58 ms
6,940 KB
testcase_40 AC 37 ms
6,940 KB
testcase_41 AC 61 ms
6,944 KB
testcase_42 AC 103 ms
13,108 KB
testcase_43 AC 95 ms
8,516 KB
testcase_44 AC 146 ms
12,516 KB
testcase_45 AC 108 ms
14,476 KB
testcase_46 AC 141 ms
12,480 KB
testcase_47 AC 125 ms
10,328 KB
testcase_48 AC 95 ms
13,624 KB
testcase_49 AC 169 ms
12,240 KB
testcase_50 AC 68 ms
14,644 KB
testcase_51 AC 246 ms
15,376 KB
testcase_52 AC 49 ms
7,528 KB
testcase_53 AC 162 ms
13,216 KB
testcase_54 AC 174 ms
15,828 KB
testcase_55 AC 123 ms
12,940 KB
testcase_56 AC 125 ms
12,224 KB
testcase_57 AC 386 ms
21,492 KB
testcase_58 AC 366 ms
19,684 KB
testcase_59 AC 397 ms
20,424 KB
testcase_60 AC 367 ms
19,620 KB
testcase_61 AC 2 ms
6,944 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 ) {
                bought.insert(a.top().second);
                ans++;
                a.pop();
            }
        }
        else {
            while( !b.empty() && bought.count(b.top().second) ) b.pop();
            if( !b.empty() && b.top().first <= money ) {
                bought.insert(b.top().second);
                ans++;
                b.pop();
            }
        }
    }
    cout << n-ans << endl;
    
    return 0;
}
0