| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 890033 | vjudge1 | Hedgehog Daniyar and Algorithms (IZhO19_sortbooks) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define inf INFINITY
#define pb push_back
#define F first
#define S second
const int N = 1e9+10;
using namespace std;
ll n,q,a[N],l,r,k,mx,mn;
pair <int,int> b[N];
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);cout.tie(0);
cin>>n>>q;
for(int i=1;i<=n;i++){
cin>>a[i];
}
while(q--){
cin>>l>>r>>k;
for(int i=l;i<=r;i++){
b[i-l+1].F=a[i];
b[i-l+1].S=i;
}
sort(b+1,b+r-l+2);
for(int i=l;i<=r;i++){
for(int j=i;j<=b[i-l+1].S;j++){
mx=max(mx,abs(b[i-l+1].F-a[j]));
}
}
if(mx>k)cout<<0<<'\n';
else cout<<1<<'\n';
}
return 0;
}
