This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
// #define MULTI_TEST_CASE
// #define TEST_TEXT
using namespace std;
#define ll long long
#define MAX(a, b) (a) = max((a), (b))
#define MIN(a, b) (a) = min((a), (b))
#define all(a) (a).begin(), (a).end()
#define sortedpair(a, b) {min((a), (b)), max((a), (b))}
const ll MOD = 1e9+7;
struct event{
int start, end, ind;
event(){}
bool operator<(const event&o){
return end < o.end;
}
};
int n, q;
vector<event> v;
vector<int> p;
void solve(){
cin>>n>>q;
v.resize(n);
for(int i = 0; i < n; i++){
cin>>v[i].start>>v[i].end;
v[i].ind = i;
}
sort(all(v));
vector<int> hol(n);
for(int i = 0; i < n; i++){
hol[v[i].ind] = i;
}
vector<int> megszakit;
for(int i = 0; i < n-1; i++){
if(v[i].end < v[i+1].start){
megszakit.push_back(i);
}
}
megszakit.push_back(1e9);
while(q--){
int a, b; cin>>a>>b; a--; b--;
if(v[hol[b]].end < v[hol[a]].end){
cout<<"impossible"<<endl;
continue;
}
if(v[hol[b]].end == v[hol[a]].end){
cout<<1<<endl;
continue;
}
if(*lower_bound(megszakit.begin(), megszakit.end(), hol[a]) < hol[b]){
cout<<"impossible"<<endl;
continue;
}
cout<<hol[b]-hol[a]<<endl;
}
}
int main(){
ios_base::sync_with_stdio(0); cin.tie(0);
int _t = 1;
#ifdef MULTI_TEST_CASE
cin >> _t;
#endif
for(int _i = 0; _i < _t; _i++){
#ifdef TEST_TEXT
cout<<"Case #"<<_i+1<<": ";
#endif
solve();
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |