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>
using namespace std;
typedef vector<int> vi;
typedef vector<char> vc;
typedef pair<int, int> pii;
typedef long long ll;
typedef pair<ll, ll> pll;
typedef vector<ll> vll;
#define sep ' '
#define F first
#define S second
#define fastIO ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define pb push_back
#define kill(x) {cout << x << endl;return;}
#define sz(x) int(x.size())
#define SP(x) setprecision(x)
#define mod(x) (1ll*x%M+M)%M
#define pq priority_queue
#define mid (l+r)/2
// #define mid2 (l+r+1)/2
#define pll pair<ll, ll>
#define REP(i, k) for (int i = 0 ; i < k ; i ++)
#define MP make_pair
#define int ll
const int M = 998244353;
const int N = 3e4+1;
int n, m;
vector<pair<int, int>> adj[N];
ll dis[N];
bool vis[N];
int b[N], p[N];
vi D[N];
bitset<N> mat[N];
void solve() {
// input in 0-index itself
cin >> n >> m;
for(int i = 0 ; i < m ; i ++) {
cin >> b[i] >> p[i];
D[b[i]].pb(p[i]);
}
for(int i = 0 ; i < n ; i ++) {
sort(D[i].begin(), D[i].end(), greater<>());
for(int j = 0 ; j < D[i].size(); j ++) {
if (j == 0 || D[i][j] != D[i][j-1]) {
for(int k = i-D[i][j], cnt = 1 ; k >= 0 ; k -= D[i][j], cnt++) {
if (!mat[i][k])
adj[i].pb({k, cnt}), mat[i][k] = true;
}
for(int k = i+D[i][j], cnt = 1 ; k < n ; k += D[i][j], cnt++) {
if (!mat[i][k])
adj[i].pb({k, cnt}), mat[i][k] = true;
}
}
}
}
fill(dis, dis+n, n*n+1);
dis[b[0]] = 0;
priority_queue<pii, vector<pii>, greater<pii> > q;
q.push({0, b[0]});
while(!q.empty()) {
int u = q.top().S;
if (u == 1) break;
q.pop();
for(auto [neigh, w]: adj[u]) {
if (dis[neigh] > dis[u] + w) {
dis[neigh] = dis[u] + w;
q.push({dis[neigh], neigh});
}
}
}
cout << (dis[b[1]] == n*n+1 ? -1 : dis[b[1]]) << endl;
}
// check MAXN
int32_t main() {
fastIO;
solve();
return 0;
}
Compilation message (stderr)
skyscraper.cpp: In function 'void solve()':
skyscraper.cpp:48:21: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
48 | for(int j = 0 ; j < D[i].size(); j ++) {
| ~~^~~~~~~~~~~~~
# | 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... |