# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
658317 | ssense | Jakarta Skyscrapers (APIO15_skyscraper) | C++14 | 416 ms | 262144 KiB |
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 startt ios_base::sync_with_stdio(false);cin.tie(0);
typedef long long ll;
using namespace std;
#define vint vector<int>
#define all(v) v.begin(), v.end()
#define MOD 1000000007
#define MOD2 998244353
#define MX 1000000000
#define MXL 1000000000000000000
#define PI (ld)2*acos(0.0)
#define pb push_back
#define sc second
#define fr first
#define int long long
#define endl '\n'
#define ld long double
#define NO cout << "NO" << endl
#define YES cout << "YES" << endl
int ceildiv(int one, int two) {if (one % two == 0) {return one / two;}else {return one / two + 1;}} int power(int n, int pow, int m) {if (pow == 0) return 1;if (pow % 2 == 0) {ll x = power(n, pow / 2, m);return (x * x) % m;}else return (power(n, pow - 1, m) * n) % m;} int gcd(int a, int b) { if (!b)return a; return gcd(b, a % b);} int factorial(int n, int mod) {if (n > 1)return (n * factorial(n - 1, mod)) % mod; else return 1;} int lcm(int a, int b) {return (a * b) / gcd(a, b);} vector<int> read(int n) {vector<int> a; for (int i = 0; i < n; i++) { int x; cin >> x; a.pb(x);} return a;}struct prefix_sum{vint pref;void build(vint a){pref.pb(0);for(int i = 0; i < a.size(); i++){pref.pb(pref.back()+a[i]);}}int get(int l, int r){return pref[r+1]-pref[l];}};//mesanu
int mp[30005][175];
vector<vector<pair<int, int>>> adj;
void cnn(int first, int second)
{
vector<pair<int, int>> a;
mp[first][second] = adj.size();
adj.pb(a);
}
int dijkstra(int s, int e)
{
int n = adj.size();
vector<int> d(n, MXL);
d[s] = 0;
set<pair<int, int>> q;
q.insert({0, s});
while (!q.empty()) {
int v = q.begin()->second;
q.erase(q.begin());
for (auto edge : adj[v]) {
int to = edge.first;
int len = edge.second;
if (d[v] + len < d[to]) {
q.erase({d[to], to});
d[to] = d[v] + len;
q.insert({d[to], to});
}
}
}
return d[e];
}
void solve()
{
int n, m;
cin >> n >> m;
int start = 0;
int end = 0;
int th = sqrt(n);
vector<pair<int, int>> ph;
adj.pb(ph);
for(int i = 0; i < n; i++)
{
cnn(i, 0);
}
for(int sky = 0; sky < n; sky++)
{
for(int power = 1; power <= th; power++)
{
cnn(sky, power);
}
}
for(int sky = 0; sky < n; sky++)
{
for(int power = 1; power <= th; power++)
{
adj[mp[sky][power]].pb({mp[sky][0], 0});
if(sky-power >= 0)
{
adj[mp[sky][power]].pb({mp[sky-power][power], 1});
}
if(sky+power < n)
{
adj[mp[sky][power]].pb({mp[sky+power][power], 1});
}
}
}
for(int i = 0; i < m; i++)
{
int sky, power;
cin >> sky >> power;
if(i == 0)
{
start = sky;
}
if(i == 1)
{
end = sky;
}
if(power <= th)
{
adj[mp[sky][0]].pb({mp[sky][power], 0});
}
else
{
for(int j = sky%power; j < n; j+=power)
{
adj[mp[sky][0]].pb({mp[j][0], abs(sky-j)/power});
}
}
}
int dist = dijkstra(mp[start][0], mp[end][0]);
if(dist == MXL)
{
cout << -1 << endl;
}
else
{
cout << dist << endl;
}
}
int32_t main(){
startt
int t = 1;
//cin >> t;
while (t--) {
solve();
}
}
/*
5 3
0 2
1 1
4 1
*/
Compilation message (stderr)
# | 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... |