結果
問題 | No.2421 entersys? |
ユーザー | keisuke6 |
提出日時 | 2023-08-12 14:48:10 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,101 bytes |
コンパイル時間 | 3,642 ms |
コンパイル使用メモリ | 248,372 KB |
実行使用メモリ | 49,920 KB |
最終ジャッジ日時 | 2024-11-19 21:44:53 |
合計ジャッジ時間 | 19,825 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 3 ms
6,816 KB |
testcase_02 | AC | 5 ms
6,820 KB |
testcase_03 | AC | 3 ms
6,820 KB |
testcase_04 | AC | 3 ms
6,820 KB |
testcase_05 | AC | 5 ms
6,816 KB |
testcase_06 | AC | 5 ms
6,820 KB |
testcase_07 | AC | 5 ms
6,816 KB |
testcase_08 | AC | 5 ms
6,816 KB |
testcase_09 | AC | 6 ms
6,820 KB |
testcase_10 | AC | 5 ms
6,820 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 784 ms
30,080 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 582 ms
22,272 KB |
testcase_27 | AC | 574 ms
22,144 KB |
testcase_28 | AC | 591 ms
22,272 KB |
ソースコード
#include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> using namespace __gnu_pbds; template<typename T> using ordered_multiset = tree<T, null_type, std::less<T>, rb_tree_tag, tree_order_statistics_node_update>; using namespace std; #define int long long signed main(){ int N,Q; cin>>N; map<string,set<pair<int,int>>> m; ordered_multiset<int> s,t; for(int i=0;i<N;i++){ string ss; int a,b; cin>>ss>>a>>b; b++; m[ss].insert({a,b}); s.insert(a); t.insert(b); } cin>>Q; while(Q--){ int tt; cin>>tt; //cout<<tt<<endl; if(tt == 3){ string ss; int a,b; cin>>ss>>a>>b; b++; m[ss].insert({a,b}); s.insert(a); t.insert(b); } else if(tt == 1){ string ss; int k; cin>>ss>>k; auto it = m[ss].lower_bound({k+1,-1}); if(m[ss].begin() == it) cout<<"No"<<endl; else{ it--; int a,b; tie(a,b) = *it; if(a <= k && k < b) cout<<"Yes"<<endl; else cout<<"No"<<endl; } } else{ int k; cin>>k; k++; cout<<s.order_of_key(k)-t.order_of_key(k)<<endl; } } }