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>
#include<ext/pb_ds/assoc_container.hpp>
using namespace std;
using namespace __gnu_pbds;
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
#define N 30005
struct A{
int a,b,c;
};
int a[N],p[N],f,b;
vector<int> g[N];
bitset<N> vis;
gp_hash_table<int,int> s[N];
A arr[8000000];
int main(){
int n,m,i;
scanf("%d %d",&n,&m);
for(i=0;i<m;i++){
scanf("%d %d",&a[i],&p[i]);
g[a[i]].push_back(p[i]);
}
arr[0]={a[0],p[0],0};
s[a[0]][p[0]];
while(f<=b){
auto [x,po,w]=arr[f++];
if(x==a[1]){printf("%d",w);return 0;}
if(x>=po&&s[x-po].find(po)==s[x-po].end())arr[++b]={x-po,po,w+1},s[x-po][po];
if(x+po<n&&s[x+po].find(po)==s[x+po].end())arr[++b]={x+po,po,w+1},s[x+po][po];
if(vis[x])continue;
vis[x]=true;
for(auto po:g[x]){
if(x>=po&&s[x-po].find(po)==s[x-po].end())arr[++b]={x-po,po,w+1},s[x-po][po];
if(x+po<n&&s[x+po].find(po)==s[x+po].end())arr[++b]={x+po,po,w+1},s[x+po][po];
}
}
printf("-1");
return 0;
}
Compilation message (stderr)
skyscraper.cpp: In function 'int main()':
skyscraper.cpp:21:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
21 | scanf("%d %d",&n,&m);
| ~~~~~^~~~~~~~~~~~~~~
skyscraper.cpp:23:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
23 | scanf("%d %d",&a[i],&p[i]);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~
# | 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... |