結果

問題 No.812 Change of Class
ユーザー けーむ
提出日時 2020-07-21 16:38:49
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 566 ms / 4,000 ms
コード長 2,631 bytes
コンパイル時間 2,422 ms
コンパイル使用メモリ 182,164 KB
実行使用メモリ 14,800 KB
最終ジャッジ日時 2024-12-29 23:14:58
合計ジャッジ時間 16,175 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 60
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(i, n) for(ll i = 0, i##_len = (n); i < i##_len; i++)
#define reps(i, s, n) for(ll i = (s), i##_len = (n); i < i##_len; i++)
#define rrep(i, n) for(ll i = (n) - 1; i >= 0; i--)
#define rreps(i, e, n) for(ll i = (n) - 1; i >= (e); i--)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define sz(x) ((ll)(x).size())
#define len(x) ((ll)(x).length())
#define endl "\n"

template<class T>
struct Dijkstra {
    const T inf = numeric_limits<T>::max() / 2 - 1;
    vector<T> dist;
    vector<int> path;
    
    Dijkstra() {}
    Dijkstra(int n) {
        graph.resize(n);
        dist.resize(n);
        prev.resize(n);
    }
    
    void add_edge(int from, int to, T cost) {
        graph[from].emplace_back(to, cost);
    }
    
    void get_distance(int from) {
        priority_queue<pair<T, int>, vector<pair<T, int>>, greater<pair<T, int>>> pq;
        fill(dist.begin(), dist.end(), inf);
        fill(prev.begin(), prev.end(), -1);
        dist[from] = 0;
        pq.push(make_pair(0, from));
        while(!pq.empty()) {
            pair<T, int> p = pq.top(); pq.pop();
            if (dist[p.second] < p.first) continue;
            for (auto e : graph[p.second]) {
                if (dist[e.first] > (dist[p.second] + e.second)) {
                    dist[e.first] = dist[p.second] + e.second;
                    prev[e.first] = p.second;
                    pq.push(make_pair(dist[e.first], e.first));
                }
            }
        }
    }
    
    void get_path(int to) {
        path = vector<int>(0);
        for (; to != -1; to = prev[to]) {
            path.push_back(to);
        }
        reverse(path.begin(), path.end());
    }
    
private:
    vector<vector<pair<int, T>>> graph;
    vector<T> prev;
};

ll f(ll n) {
    ll v = 1, ans = 1;
    while(v < n) {
        v *= 2;
        ans++;
    }
    return ans;
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    // ifstream in("input.txt");
    // cin.rdbuf(in.rdbuf());
    ll n, m;
    cin >> n >> m;
    Dijkstra<ll> di(n);
    rep(i, m) {
        ll p, q;
        cin >> p >> q;
        p--; q--;
        di.add_edge(p, q, 1);
        di.add_edge(q, p, 1);
    }
    ll q;
    cin >> q;
    rep(i, q) {
        ll a;
        cin >> a;
        a--;
        di.get_distance(a);
        ll dist = 0, cnt = -1;
        rep(j, n) {
            if (di.dist[j] == di.inf) continue;
            cnt++;
            dist = max(dist, f(di.dist[j]) - 1);
        }
        printf("%lld %lld\n", cnt, dist);
    }
    return 0;
}
0