This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
/*
IN THE NAME OF GOD
*/
#include <bits/stdc++.h>
// #pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
// #pragma GCC optimize("O3")
// #pragma GCC optimize("unroll-loops")
using namespace std;
typedef long long ll;
typedef pair<ll, ll> pll;
typedef pair<int, int> pii;
typedef long double ld;
#define F first
#define S second
#define Mp make_pair
#define pb push_back
#define pf push_front
#define size(x) ((ll)x.size())
#define all(x) (x).begin(),(x).end()
#define kill(x) cout << x << '\n', exit(0);
#define fuck(x) cout << "(" << #x << " , " << x << ")" << endl
#define endl '\n'
const int N = 3e5+23, lg = 18;
ll Mod = 1e9+7; //998244353;
inline ll MOD(ll a, ll mod=Mod) {a%=mod; (a<0)&&(a+=mod); return a;}
inline ll poww(ll a, ll b, ll mod=Mod) {
ll ans = 1;
a=MOD(a, mod);
while (b) {
if (b & 1) ans = MOD(ans*a, mod);
b >>= 1;
a = MOD(a*a, mod);
}
return ans;
}
ll n, q, dist[3][5*N], vis[3][5*N], x[N], id[2*N], L[N], R[N], cnt;
vector<pll> adj[5*N];
vector<vector<int>> vec[N];
void build(int ind=1) {
id[ind] = ++cnt;
if(ind>=(1<<lg)) {
int f = ind - (1<<lg) + 1;
if(f<=n) adj[f].pb({id[ind], 0});
return;
}
build(2*ind); build(2*ind+1);
adj[id[2*ind+1]].pb({id[ind], 0});
adj[id[2*ind]].pb({id[ind], 0});
}
void query(int v, int l, int r, int ind=1, int lc=1, int rc=(1<<lg)+1) {
if(l>=rc || lc>=r) return;
if(lc>=l && rc<=r) {
adj[id[ind]].pb({v, 1});
return;
}
int mid = (lc+rc)/2;
query(v, l, r, 2*ind, lc, mid);
query(v, l, r, 2*ind+1, mid, rc);
}
int main () {
ios_base::sync_with_stdio(false), cin.tie(0);
cin>>n;
cnt=n;
for(int i=1; i<=n; i++) cin>>L[i]>>R[i];
cin>>q;
for(int i=1; i<=q; i++) cin>>x[i];
build(1);
for(int i=1; i<=n; i++) {
query(i, L[i], i);
query(i, i+1, R[i]+1);
}
int ptr = 0;
//priority_queue<vector<int>, vector<vector<int>>, greater<vector<int>>> pq;
//pq.push({0, 0, 1});
//pq.push({0, 1, n});
vec[0].pb({0, 0, 1});
vec[0].pb({0, 1, n});
while(ptr<N) {
if(size(vec[ptr]) == 0) {
ptr++; continue;
}
vector<int> v = vec[ptr].back();
vec[ptr].pop_back();
if(vis[v[1]][v[2]] == 1) continue;
vis[v[1]][v[2]] = 1, dist[v[1]][v[2]] = v[0];
if(vis[1][v[2]]==1 && vis[0][v[2]]==1) {
vec[dist[1][v[2]]+dist[0][v[2]]-(v[2]>1&&v[2]<n)].pb({dist[1][v[2]]+dist[0][v[2]]-(v[2]>1&&v[2]<n), 2, v[2]});
}
for(auto it : adj[v[2]]) {
vec[v[0]+it.S].pb({v[0]+it.S, v[1], it.F});
}
}
for(int i=1; i<=q; i++) {
if(vis[2][x[i]] == 1) cout<<dist[2][x[i]]<<endl;
else cout<<-1<<endl;
}
return 0;
}
Compilation message (stderr)
passport.cpp: In function 'int main()':
passport.cpp:90:19: warning: narrowing conversion of 'n' from 'll' {aka 'long long int'} to 'int' [-Wnarrowing]
90 | vec[0].pb({0, 1, n});
| ^
passport.cpp:90:19: warning: narrowing conversion of 'n' from 'll' {aka 'long long int'} to 'int' [-Wnarrowing]
passport.cpp:100:84: warning: narrowing conversion of '((dist[1][v.std::vector<int>::operator[](2)] + dist[0][v.std::vector<int>::operator[](2)]) - ((ll)((int)((v.std::vector<int>::operator[](2) > 1) && (((ll)v.std::vector<int>::operator[](2)) < n)))))' from 'll' {aka 'long long int'} to 'int' [-Wnarrowing]
100 | vec[dist[1][v[2]]+dist[0][v[2]]-(v[2]>1&&v[2]<n)].pb({dist[1][v[2]]+dist[0][v[2]]-(v[2]>1&&v[2]<n), 2, v[2]});
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
passport.cpp:100:84: warning: narrowing conversion of '((dist[1][v.std::vector<int>::operator[](2)] + dist[0][v.std::vector<int>::operator[](2)]) - ((ll)((int)((v.std::vector<int>::operator[](2) > 1) && (((ll)v.std::vector<int>::operator[](2)) < n)))))' from 'll' {aka 'long long int'} to 'int' [-Wnarrowing]
passport.cpp:103:27: warning: narrowing conversion of '(((long long int)v.std::vector<int>::operator[](0)) + it.std::pair<long long int, long long int>::second)' from 'long long int' to 'int' [-Wnarrowing]
103 | vec[v[0]+it.S].pb({v[0]+it.S, v[1], it.F});
passport.cpp:103:27: warning: narrowing conversion of '(((long long int)v.std::vector<int>::operator[](0)) + it.std::pair<long long int, long long int>::second)' from 'long long int' to 'int' [-Wnarrowing]
passport.cpp:17:48: warning: narrowing conversion of 'it.std::pair<long long int, long long int>::first' from 'long long int' to 'int' [-Wnarrowing]
17 | #define F first
| ^
passport.cpp:103:43: note: in expansion of macro 'F'
103 | vec[v[0]+it.S].pb({v[0]+it.S, v[1], it.F});
| ^
passport.cpp:17:48: warning: narrowing conversion of 'it.std::pair<long long int, long long int>::first' from 'long long int' to 'int' [-Wnarrowing]
17 | #define F first
| ^
passport.cpp:103:43: note: in expansion of macro 'F'
103 | vec[v[0]+it.S].pb({v[0]+it.S, v[1], it.F});
| ^
# | 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... |