結果

問題 No.878 Range High-Element Query
ユーザー autumn-eelautumn-eel
提出日時 2019-09-06 22:32:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 1,322 bytes
コンパイル時間 1,862 ms
コンパイル使用メモリ 176,780 KB
実行使用メモリ 25,856 KB
最終ジャッジ日時 2024-06-24 19:56:02
合計ジャッジ時間 4,836 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
24,840 KB
testcase_01 AC 38 ms
25,088 KB
testcase_02 AC 39 ms
25,088 KB
testcase_03 AC 39 ms
24,960 KB
testcase_04 AC 37 ms
24,960 KB
testcase_05 AC 38 ms
25,088 KB
testcase_06 AC 38 ms
24,952 KB
testcase_07 AC 39 ms
25,088 KB
testcase_08 AC 39 ms
24,960 KB
testcase_09 AC 40 ms
24,960 KB
testcase_10 AC 40 ms
25,016 KB
testcase_11 AC 212 ms
25,480 KB
testcase_12 AC 149 ms
25,492 KB
testcase_13 AC 174 ms
25,428 KB
testcase_14 AC 134 ms
25,472 KB
testcase_15 AC 148 ms
25,600 KB
testcase_16 AC 207 ms
25,628 KB
testcase_17 AC 218 ms
25,600 KB
testcase_18 AC 214 ms
25,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n)for(int i=0;i<(n);i++)
using namespace std;
typedef long long ll;
typedef pair<int,int>P;

const int MOD=1000000007;
const int INF=0x3f3f3f3f;
const ll INFL=0x3f3f3f3f3f3f3f3f;


int a[200000];
int idx[200000];

const int N=(1<<17);
vector<int>dat[2*N];
void init(int k, int l, int r) {
	if (r - l == 1) {
		dat[k].push_back(idx[l]); return;
	}
	int lb = k * 2 + 1, rb = k * 2 + 2;
	init(lb, l, (l + r) / 2);
	init(rb, (l + r) / 2, r);
	dat[k].resize(r - l);
	merge(dat[lb].begin(), dat[lb].end(), dat[rb].begin(), dat[rb].end(), dat[k].begin());
}
int query(int a, int b, int c, int d, int k, int l, int r) {
	if (b <= l || r <= a)return 0;
	if (a <= l&&r <= b) {
		int u = lower_bound(dat[k].begin(), dat[k].end(), d) - dat[k].begin();
		int v = lower_bound(dat[k].begin(), dat[k].end(), c) - dat[k].begin();
		return u - v;
	}
	int lb = query(a, b, c, d, k * 2 + 1, l, (l + r) / 2);
	int rb = query(a, b, c, d, k * 2 + 2, (l + r) / 2, r);
	return lb + rb;
}

int main(){
	int n,q;cin>>n>>q;
	stack<P>st;
	rep(i,n){
		scanf("%d",&a[i]);
		while(!st.empty()&&st.top().first<a[i])st.pop();
		if(st.empty())idx[i]=-1;
		else idx[i]=st.top().second;
		st.push(P(a[i],i));
	}
	init(0,0,N);
	rep(i,q){
		int l,r;scanf("%*d%d%d",&l,&r);l--;
		printf("%d\n",query(l,r,-10,l,0,0,N));
	}
}
0