結果
問題 | No.2421 entersys? |
ユーザー | FplusFplusF |
提出日時 | 2023-08-12 14:20:37 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,894 bytes |
コンパイル時間 | 3,099 ms |
コンパイル使用メモリ | 239,500 KB |
実行使用メモリ | 76,672 KB |
最終ジャッジ日時 | 2024-11-19 18:41:25 |
合計ジャッジ時間 | 16,477 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 4 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | AC | 4 ms
5,248 KB |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | AC | 3 ms
5,248 KB |
testcase_08 | AC | 4 ms
5,248 KB |
testcase_09 | AC | 5 ms
5,248 KB |
testcase_10 | AC | 4 ms
5,248 KB |
testcase_11 | AC | 696 ms
58,456 KB |
testcase_12 | AC | 660 ms
58,484 KB |
testcase_13 | AC | 629 ms
58,488 KB |
testcase_14 | AC | 665 ms
58,496 KB |
testcase_15 | AC | 663 ms
58,612 KB |
testcase_16 | AC | 658 ms
62,904 KB |
testcase_17 | AC | 662 ms
62,876 KB |
testcase_18 | AC | 686 ms
62,868 KB |
testcase_19 | AC | 680 ms
62,728 KB |
testcase_20 | AC | 677 ms
62,860 KB |
testcase_21 | AC | 453 ms
46,584 KB |
testcase_22 | AC | 566 ms
58,796 KB |
testcase_23 | AC | 966 ms
76,672 KB |
testcase_24 | AC | 958 ms
76,512 KB |
testcase_25 | AC | 940 ms
76,492 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=long long; using pll=pair<ll,ll>; using tll=tuple<ll,ll,ll>; using ld=long double; const ll INF=(1ll<<60); #define rep(i,n) for (ll i=0;i<(ll)(n);i++) #define all(v) v.begin(),v.end() template<class T> void chmin(T &a,T b){ if(a>b){ a=b; } } template<class T> void chmax(T &a,T b){ if(a<b){ a=b; } } template<class T> unordered_map<ll,ll> compress(vector<T> x){ vector<T> unique_v=x; int n=x.size(); sort(all(unique_v)); unordered_map<ll,ll> mp; unique_v.erase(unique(all(unique_v)),unique_v.end()); for(int i=0;i<n;i++){ mp[x[i]]=lower_bound(all(unique_v),x[i])-unique_v.begin(); } return mp; } struct segment_tree{ vector<ll> v,lazy; ll n; segment_tree(ll x){ ll s=1; while(s<x) s*=2; n=s; v.assign(s*2-1,0); lazy.assign(s*2-1,0); } void eval(ll k,ll l,ll r){ if(lazy[k]!=0){ v[k]+=lazy[k]; if(1<r-l){ lazy[2*k+1]+=lazy[k]/2; lazy[2*k+2]+=lazy[k]/2; } } lazy[k]=0; } void add(ll a,ll b,ll x){ add_sub(a,b,x,0ll,0ll,n); } void add_sub(ll a,ll b,ll x,ll k,ll l, ll r){ eval(k,l,r); if(r<=a||b<=l){ return; }else if(a<=l&&r<=b){ lazy[k]+=(r-l)*x; eval(k,l,r); return; }else{ add_sub(a,b,x,k*2+1,l,(l+r)/2); add_sub(a,b,x,k*2+2,(l+r)/2,r); v[k]=v[k*2+1]+v[k*2+2]; return; } } ll query(ll a,ll b){ return query_sub(a,b,0ll,0ll,n); } ll query_sub(ll a,ll b,ll k,ll l,ll r){ if(r<=a||b<=l){ return 0; } eval(k,l,r); if(a<=l&&r<=b){ return v[k]; }else{ ll vl=query_sub(a,b,k*2+1,l,(l+r)/2); ll vr=query_sub(a,b,k*2+2,(l+r)/2,r); return vl+vr; } } }; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); ll n; cin >> n; vector<ll> v; unordered_map<string,set<pll>> mp; vector<ll> vl(n),vr(n); rep(i,n){ string x; ll l,r; cin >> x >> l >> r; mp[x].insert({r,l}); v.push_back(l); v.push_back(r); vl[i]=l; vr[i]=r; } for(auto &[k,st]:mp) st.insert({INF,INF}); ll q; cin >> q; vector<vector<ll>> que(q); vector<string> str(q); rep(i,q){ ll z; cin >> z; if(z==1){ string x; ll t; cin >> x >> t; str[i]=x; que[i]={1,t}; } if(z==2){ ll t; cin >> t; que[i]={2,t}; v.push_back(t); } if(z==3){ string x; ll l,r; cin >> x >> l >> r; str[i]=x; que[i]={3,l,r}; v.push_back(l); v.push_back(r); } } v.push_back(INF); unordered_map<ll,ll> z=compress(v); ll m=z.size(); segment_tree st(m); rep(i,n) st.add(z[vl[i]],z[vr[i]]+1,1); rep(i,q){ if(que[i].front()==1){ string x=str[i]; ll t=que[i][1]; if(!mp.count(x)){ cout << "No\n"; continue; } ll l,r; tie(r,l)=(*mp[x].lower_bound({t,t})); if(l<=t&&t<=r) cout << "Yes\n"; else cout << "No\n"; } if(que[i].front()==2){ ll t=que[i][1]; cout << st.query(z[t],z[t]+1) << '\n'; } if(que[i].front()==3){ string x=str[i]; ll l=que[i][1],r=que[i][2]; mp[x].insert({r,l}); mp[x].insert({INF,INF}); st.add(z[l],z[r]+1,1); } } }