#include <bits/stdc++.h>
#define ll long long
#define sz(x) (int)(x).size();
#define pii pair<int,int>
#define f first
#define s second
using namespace std;
const int MAXN=3e5+7;
int n,k,x,y,ans,INF=1e9,l,r,m;
pair<pii,pii> a[MAXN];
vector<int> present[MAXN];
ll solve()
{
ans=0;
cin>>x>>y;
for (int i=1;i<=k;++i)
present[i].clear();
for (int i=0;i<n;++i)
if (a[i].s.f<=y&&y<=a[i].s.s)
present[a[i].f.s].push_back(a[i].f.f);
for (int i=1;i<=k;++i)
{
l=0;r=sz(present[i]);
if (!r)
return -1;
while (l<r)
{
m=l+(r-l)/2;
if (x<=present[i][m])
r=m;
else
l=m+1;
}
if (l==0)
ans=max(ans,abs(x-present[i][0]));
else
ans=max(ans,min(abs(x-present[i][l]),abs(x-present[i][l-1])));
}
return ans;
}
int main()
{
int q;
cin>>n>>k>>q;
for (int i=0;i<n;++i)
cin>>a[i].f.f>>a[i].f.s>>a[i].s.f>>a[i].s.s;
sort(a,a+n);
while (q--)
cout<<solve()<<"\n";
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
7424 KB |
Output is correct |
2 |
Correct |
5 ms |
7424 KB |
Output is correct |
3 |
Correct |
5 ms |
7424 KB |
Output is correct |
4 |
Incorrect |
5 ms |
7424 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
7424 KB |
Output is correct |
2 |
Correct |
5 ms |
7424 KB |
Output is correct |
3 |
Correct |
5 ms |
7424 KB |
Output is correct |
4 |
Incorrect |
5 ms |
7424 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
5068 ms |
15480 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
5064 ms |
14456 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
7424 KB |
Output is correct |
2 |
Correct |
5 ms |
7424 KB |
Output is correct |
3 |
Correct |
5 ms |
7424 KB |
Output is correct |
4 |
Incorrect |
5 ms |
7424 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
7424 KB |
Output is correct |
2 |
Correct |
5 ms |
7424 KB |
Output is correct |
3 |
Correct |
5 ms |
7424 KB |
Output is correct |
4 |
Incorrect |
5 ms |
7424 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |