제출 #890033

#제출 시각아이디문제언어결과실행 시간메모리
890033vjudge1Hedgehog Daniyar and Algorithms (IZhO19_sortbooks)C++17
컴파일 에러
0 ms0 KiB
#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;
}

컴파일 시 표준 에러 (stderr) 메시지

/usr/bin/ld: failed to convert GOTPCREL relocation; relink with --no-relax
collect2: error: ld returned 1 exit status