제출 #877857

#제출 시각아이디문제언어결과실행 시간메모리
877857sysiaJakarta Skyscrapers (APIO15_skyscraper)C++17
22 / 100
14 ms48988 KiB
//Sylwia Sapkowska
#include <bits/stdc++.h>
#pragma GCC optimize("O3", "unroll-loops")
using namespace std;

void __print(int x) {cerr << x;}
void __print(long long x) {cerr << x;}
void __print(long double x) {cerr << x;}
void __print(char x) {cerr << "'" << x << "'";}
void __print(const char *x) {cerr << '"' << x << '"';}
void __print(const string &x) {cerr << '"' << x << '"';}
void __print(bool x) {cerr << (x ? "true" : "false");}

template<typename T, typename V>
void __print(const pair<T, V> &x) {cerr << '{'; __print(x.first); cerr << ", "; __print(x.second); cerr << '}';}
template<typename T>
void __print(const T &x) {int f = 0; cerr << '{'; for (auto &i: x) cerr << (f++ ? ", " : ""), __print(i); cerr << "}";}
void _print() {cerr << "]\n";}
template <typename T, typename... V>
void _print(T t, V... v) {__print(t); if (sizeof...(v)) cerr << ", "; _print(v...);}
#ifdef LOCAL
#define debug(x...) cerr << "[" << #x << "] = ["; _print(x)
#else
#define debug(x...)
#endif

#define int long long
typedef pair<int, int> T;
const int oo = 1e18, oo2 = 1e9+7, K = 30;
const int mod = 998244353;

const int s = 770;
// #warning ch s
// const int s = 3;

void solve(){
    int n, m; cin >> n >> m;
    vector<vector<T>>g(n*s+2);
    auto ch = [&](int v, int j = 0){
        return v*s+j;
    };
    auto add_edge = [&](int a, int b, int c, bool two = 0){
        if (two) g[a].emplace_back(b, c);
        g[b].emplace_back(a, c);
        // cout << a << " " << b << " " << c << "\n";
    };
    // for (int i = 1; i<s; i++){
    //     for (int v = 0; v + i < n; v++){
    //         add_edge(ch(v, i), ch(v+i, i), 1);
    //     }
    // }
    set<T>was;
    int start, kon;
    for (int i = 0; i<m; i++){
        int v, j; cin >> v >> j;
        if (i == 0) start = v;
        if (i == 1) kon = v;
        if (j < s){
            if (was.find({v%j, j}) == was.end()){
                debug(v, j);
                was.insert({v%j, j});
                int u = v;
                add_edge(ch(u), ch(u, j), 0);
                while (u >= j){
                    add_edge(ch(u-j), ch(u-j, j), 0);
                    add_edge(ch(u, j), ch(u-j, j), 1, 1);
                    u-=j;
                }
                u = v;
                while (u + j < n){
                    add_edge(ch(u+j), ch(u+j, j), 0);
                    add_edge(ch(u, j), ch(u+j, j), 1, 1);
                    u += j;
                }
            }
            add_edge(ch(v, j), ch(v), 0);
        } else {
            int u = v;
            while (u >= j){
                add_edge(ch(u), ch(u-j), 1, 1);
                u-=j;
            }
            u = v;
            while (u + j < n){
                add_edge(ch(u), ch(u+j), 1, 1);
                u += j;
            }
        }
    }
    vector<bool>vis(n*s+2);
    deque<int>q;
    vector<int>dist(n*s+2, oo);
    q.push_back(ch(start));
    vis[ch(start)] = 1;
    dist[ch(start)] = 0;
    while ((int)q.size()){
        int v = q.front(); q.pop_front();
        for (auto [x, c]: g[v]){
            if (!vis[x]){
                vis[x] = 1;
                dist[x] = dist[v] + c;
                if (!c) q.push_front(x);
                else q.push_back(x);
            }
        }
    }
    int ans = dist[ch(kon)];
    if (ans == oo) ans = -1;
    cout << ans << "\n";
}

int32_t main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);

    int t = 1;
    //cin >> t;
    while (t--) solve();

    return 0;
}

컴파일 시 표준 에러 (stderr) 메시지

skyscraper.cpp: In function 'void solve()':
skyscraper.cpp:40:17: warning: 'kon' may be used uninitialized in this function [-Wmaybe-uninitialized]
   40 |         return v*s+j;
      |                ~^~
skyscraper.cpp:40:17: warning: 'start' may be used uninitialized in this function [-Wmaybe-uninitialized]
   40 |         return v*s+j;
      |                ~^~
#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...