結果
問題 | No.878 Range High-Element Query |
ユーザー | kotatsugame |
提出日時 | 2020-03-06 06:28:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 300 ms / 2,000 ms |
コード長 | 1,404 bytes |
コンパイル時間 | 1,015 ms |
コンパイル使用メモリ | 93,296 KB |
実行使用メモリ | 11,668 KB |
最終ジャッジ日時 | 2024-10-14 02:35:59 |
合計ジャッジ時間 | 3,928 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 4 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 3 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | AC | 4 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 4 ms
5,248 KB |
testcase_09 | AC | 4 ms
5,248 KB |
testcase_10 | AC | 3 ms
5,248 KB |
testcase_11 | AC | 273 ms
10,420 KB |
testcase_12 | AC | 199 ms
10,192 KB |
testcase_13 | AC | 223 ms
8,972 KB |
testcase_14 | AC | 174 ms
7,780 KB |
testcase_15 | AC | 198 ms
9,936 KB |
testcase_16 | AC | 282 ms
11,344 KB |
testcase_17 | AC | 299 ms
11,600 KB |
testcase_18 | AC | 300 ms
11,668 KB |
コンパイルメッセージ
main.cpp:38:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 38 | main() | ^~~~
ソースコード
#include<iostream> #include<algorithm> #include<vector> #include<set> using namespace std; //1-indexed #include<vector> template<typename T> struct BIT{ int n; vector<T>bit; BIT(int n_=0):n(n_),bit(n_+1){} T sum(int i) { T ans=0; for(;i>0;i-=i&-i)ans+=bit[i]; return ans; } void add(int i,T a) { if(i==0)return; for(;i<=n;i+=i&-i)bit[i]+=a; } int lower_bound(T k)//k<=sum(ret) { if(k<=0)return 0; int ret=0,i=1; while((i<<1)<=n)i<<=1; for(;i;i>>=1) if(ret+i<=n&&bit[ret+i]<k)k-=bit[ret+=i]; return ret+1; } }; vector<pair<int,int> >AL,A; vector<pair<pair<int,int>,int> >Q; int N,QQ; int ans[1<<17]; main() { cin>>N>>QQ; for(int i=1;i<=N;i++) { int a;cin>>a; A.push_back(make_pair(a,i)); } sort(A.begin(),A.end()); reverse(A.begin(),A.end()); set<int>LIM; LIM.insert(N+1); for(pair<int,int>a:A) { int id=N+1-a.second; int x=N+2-*LIM.lower_bound(id); LIM.insert(id); AL.push_back(make_pair(x,a.second)); } sort(AL.begin(),AL.end()); for(int i=0;i<QQ;i++) { int id,l,r;cin>>id>>l>>r; Q.push_back(make_pair(make_pair(l,r),i)); } sort(Q.begin(),Q.end()); BIT<int>bit(N); int ai=0; for(pair<pair<int,int>,int>q:Q) { while(ai<N&&AL[ai].first<=q.first.first) { bit.add(AL[ai].second,1); ai++; } int l=q.first.first,r=q.first.second,id=q.second; ans[id]=bit.sum(r)-bit.sum(l-1); } for(int i=0;i<QQ;i++)cout<<ans[i]<<endl; }