結果
問題 | No.878 Range High-Element Query |
ユーザー | 沙耶花 |
提出日時 | 2019-09-06 22:27:10 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 321 ms / 2,000 ms |
コード長 | 2,039 bytes |
コンパイル時間 | 2,127 ms |
コンパイル使用メモリ | 187,036 KB |
実行使用メモリ | 16,204 KB |
最終ジャッジ日時 | 2024-06-24 19:44:28 |
合計ジャッジ時間 | 5,439 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 4 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 4 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 315 ms
14,852 KB |
testcase_12 | AC | 203 ms
13,860 KB |
testcase_13 | AC | 249 ms
13,700 KB |
testcase_14 | AC | 182 ms
10,500 KB |
testcase_15 | AC | 213 ms
14,088 KB |
testcase_16 | AC | 294 ms
15,600 KB |
testcase_17 | AC | 321 ms
16,168 KB |
testcase_18 | AC | 319 ms
16,204 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define modulo 1000000007 #define mod(mod_x) ((((long long)mod_x+modulo))%modulo) #define Inf 1000000000000000 template <typename T> struct segtree{ //元データx[i]はv[n+i] //v[i]の親はv[i/2],子はv[i*2]とv[i*2+1] vector<T> v; int n; const T init_value = 0; segtree(vector<T> &x){ n=1; while(true){ if(n>=x.size())break; n*=2; } v.resize(2*n,init_value); for(int i=0;i<x.size();i++){ v[n+i]=x[i]; } for(int i=n-1;i>=0;i--){ v[i]=func(v[i*2],v[i*2+1]); } } void update(int x,T val){ x+=n; v[x]=val; while(true){ x=(x)/2; v[x]=func(v[x*2],v[x*2+1]); if(x<=0)break; } } //区間[l,r)におけるクエリ処理 T query(int l,int r){ T res = init_value; l+=n;r+=n; while(true){ if(l%2==1){ res=func(v[l],res); l++; } if(r%2==1){ res=func(v[r-1],res); r--; } if(l>=r)break; l/=2;r/=2; } return res; } T func(T a,T b){ return a+b; } void show(){ int n = 1; for(int i=1;i<v.size();i++){ for(int j=0;j<n;j++){ if(j!=0)cout<<' '; cout<<v[i+j]; } cout<<endl; i+=n-1; n*=2; } } }; int main(){ int N,Q; cin>>N>>Q; vector<vector<long long>> X; vector<int> ind(N); for(int i=0;i<N;i++){ long long A; cin>>A; A--; vector<long long> x = {i,Inf,A}; X.push_back(x); ind[A]=i; } for(int i=0;i<Q;i++){ long long l,r; cin>>l; cin>>l>>r; l--;r--; vector<long long> a = {l,r,i}; X.push_back(a); } sort(X.begin(),X.end(),greater<vector<long long>>()); vector<int> fir(N,0); segtree<int> seg(fir); set<int> S; vector<int> ans(Q); for(int i=0;i<X.size();i++){ if(X[i][1]==Inf){ auto it = S.lower_bound(X[i][2]); while(it!=S.begin()){ it --; seg.update(ind[*it],0); it = S.erase(it); } seg.update(X[i][0],1); S.insert(X[i][2]); } else{ ans[X[i][2]] = seg.query(X[i][0],X[i][1]+1); } } for(int i=0;i<Q;i++){ cout<<ans[i]<<endl; } return 0; }