Submission #745834

#TimeUsernameProblemLanguageResultExecution timeMemory
745834vjudge1Event Hopping (BOI22_events)C++17
0 / 100
179 ms3492 KiB
#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 timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...