結果
問題 | No.2422 regisys? |
ユーザー | ku_senjan |
提出日時 | 2023-08-12 15:29:43 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,394 bytes |
コンパイル時間 | 8,985 ms |
コンパイル使用メモリ | 442,152 KB |
実行使用メモリ | 15,212 KB |
最終ジャッジ日時 | 2024-04-30 09:34:50 |
合計ジャッジ時間 | 15,187 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 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 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | AC | 2 ms
6,944 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 | 1 ms
6,940 KB |
testcase_27 | AC | 2 ms
6,944 KB |
testcase_28 | AC | 2 ms
6,940 KB |
testcase_29 | AC | 2 ms
6,944 KB |
testcase_30 | AC | 1 ms
6,940 KB |
testcase_31 | AC | 60 ms
7,408 KB |
testcase_32 | AC | 89 ms
7,616 KB |
testcase_33 | AC | 55 ms
7,536 KB |
testcase_34 | AC | 36 ms
6,944 KB |
testcase_35 | AC | 69 ms
7,796 KB |
testcase_36 | AC | 64 ms
6,940 KB |
testcase_37 | AC | 93 ms
8,040 KB |
testcase_38 | AC | 64 ms
6,940 KB |
testcase_39 | AC | 44 ms
6,944 KB |
testcase_40 | AC | 34 ms
6,940 KB |
testcase_41 | AC | 44 ms
6,944 KB |
testcase_42 | AC | 118 ms
14,028 KB |
testcase_43 | AC | 64 ms
6,940 KB |
testcase_44 | AC | 129 ms
12,272 KB |
testcase_45 | AC | 109 ms
13,592 KB |
testcase_46 | AC | 132 ms
13,132 KB |
testcase_47 | AC | 80 ms
7,536 KB |
testcase_48 | AC | 132 ms
15,132 KB |
testcase_49 | AC | 104 ms
8,424 KB |
testcase_50 | AC | 127 ms
12,380 KB |
testcase_51 | AC | 176 ms
12,092 KB |
testcase_52 | AC | 59 ms
7,668 KB |
testcase_53 | AC | 135 ms
13,568 KB |
testcase_54 | AC | 184 ms
12,780 KB |
testcase_55 | AC | 140 ms
12,916 KB |
testcase_56 | AC | 120 ms
9,248 KB |
testcase_57 | AC | 198 ms
13,244 KB |
testcase_58 | AC | 196 ms
14,288 KB |
testcase_59 | AC | 201 ms
15,212 KB |
testcase_60 | AC | 198 ms
13,628 KB |
testcase_61 | AC | 2 ms
6,940 KB |
ソースコード
#ifdef SENJAN #define _GLIBCXX_DEBUG #else #pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #endif #include <bits/stdc++.h> #include <atcoder/all> #include <boost/multiprecision/cpp_int.hpp> using namespace std; using namespace atcoder; using ll=long long; using ull=unsigned long long; using ld=long double; using bint = boost::multiprecision::cpp_int; using graph=vector<vector<int>>; template<class T> using min_priority_queue=priority_queue<T,vector<T>,greater<T>>; constexpr int INF32=INT_MAX/2; constexpr ll INF64=LLONG_MAX/2; constexpr ld PI=3.14159265358979323846; constexpr int dx[]={0,0,-1,1,-1,-1,1,1},dy[]={-1,1,0,0,-1,1,-1,1}; template<class T> inline bool chmax(T &a,T b){return a<b?a=b,true:false;} template<class T> inline bool chmin(T &a,T b){return a>b?a=b,true:false;} inline void dispYN(bool a){cout<<(a?"YES":"NO")<<endl;} inline void dispYn(bool a){cout<<(a?"Yes":"No")<<endl;} inline void dispyn(bool a){cout<<(a?"yes":"no")<<endl;} void _main(); int main(){cin.tie(0)->sync_with_stdio(0);cout<<fixed<<setprecision(16);_main();} void _main(){ int n, m; cin >> n >> m; vector<bool> used(n); min_priority_queue<pair<ll,int>> x_c, y_c; for(int i=0; i<n; i++){ ll a; cin >> a; x_c.push({a,i}); } for(int i=0; i<n; i++){ ll b; cin >> b; y_c.push({b,i}); } min_priority_queue<ll> x_p, y_p; for(int i=0; i<m; i++){ int t, c; cin >> t >> c; if(t==0) x_p.push(c); if(t==1) y_p.push(c); } int ans = n; while(!x_c.empty() && !y_c.empty()){ auto cmp = [&](){ if(x_c.empty()) return false; if(y_c.empty()) return true; if(x_c.top()==y_c.top()){ if(x_p.empty()) return false; if(y_p.empty()) return true; return (x_p.top()<=y_p.top()); } return (x_c.top().first<=y_c.top().first); }; if(cmp()){ auto [val,idx] = x_c.top(); x_c.pop(); while(!x_p.empty() && x_p.top()<val){ x_p.pop(); } if(!used[idx] && !x_p.empty() && val<=x_p.top()){ used[idx] = true; x_p.pop(); ans--; } }else{ auto [val,idx] = y_c.top(); y_c.pop(); while(!y_p.empty() && y_p.top()<val){ y_p.pop(); } if(!used[idx] && !y_p.empty() && val<=y_p.top()){ used[idx] = true; y_p.pop(); ans--; } } } cout << ans << endl; }