結果

問題 No.812 Change of Class
ユーザー けーむけーむ
提出日時 2020-07-21 16:38:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 443 ms / 4,000 ms
コード長 2,631 bytes
コンパイル時間 1,639 ms
コンパイル使用メモリ 183,612 KB
実行使用メモリ 14,812 KB
最終ジャッジ日時 2024-06-09 12:27:30
合計ジャッジ時間 13,018 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
10,240 KB
testcase_01 AC 14 ms
6,944 KB
testcase_02 AC 49 ms
7,168 KB
testcase_03 AC 106 ms
11,392 KB
testcase_04 AC 94 ms
10,496 KB
testcase_05 AC 443 ms
12,748 KB
testcase_06 AC 357 ms
11,652 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 384 ms
12,932 KB
testcase_10 AC 405 ms
12,844 KB
testcase_11 AC 12 ms
7,936 KB
testcase_12 AC 233 ms
11,520 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 287 ms
9,544 KB
testcase_16 AC 16 ms
6,944 KB
testcase_17 AC 247 ms
10,132 KB
testcase_18 AC 185 ms
8,064 KB
testcase_19 AC 212 ms
9,180 KB
testcase_20 AC 421 ms
12,756 KB
testcase_21 AC 174 ms
8,064 KB
testcase_22 AC 74 ms
6,944 KB
testcase_23 AC 12 ms
6,940 KB
testcase_24 AC 21 ms
6,940 KB
testcase_25 AC 60 ms
6,948 KB
testcase_26 AC 351 ms
11,080 KB
testcase_27 AC 310 ms
10,276 KB
testcase_28 AC 206 ms
9,148 KB
testcase_29 AC 46 ms
6,940 KB
testcase_30 AC 272 ms
9,856 KB
testcase_31 AC 237 ms
8,804 KB
testcase_32 AC 95 ms
6,944 KB
testcase_33 AC 273 ms
10,768 KB
testcase_34 AC 18 ms
6,944 KB
testcase_35 AC 49 ms
6,944 KB
testcase_36 AC 23 ms
6,940 KB
testcase_37 AC 138 ms
6,940 KB
testcase_38 AC 6 ms
6,940 KB
testcase_39 AC 148 ms
6,940 KB
testcase_40 AC 30 ms
6,940 KB
testcase_41 AC 5 ms
6,944 KB
testcase_42 AC 313 ms
9,216 KB
testcase_43 AC 27 ms
7,424 KB
testcase_44 AC 216 ms
7,552 KB
testcase_45 AC 23 ms
6,940 KB
testcase_46 AC 23 ms
7,424 KB
testcase_47 AC 210 ms
7,424 KB
testcase_48 AC 206 ms
8,448 KB
testcase_49 AC 63 ms
6,940 KB
testcase_50 AC 4 ms
6,940 KB
testcase_51 AC 50 ms
6,944 KB
testcase_52 AC 91 ms
7,680 KB
testcase_53 AC 39 ms
6,944 KB
testcase_54 AC 35 ms
6,944 KB
testcase_55 AC 246 ms
10,920 KB
testcase_56 AC 302 ms
13,204 KB
testcase_57 AC 321 ms
13,612 KB
testcase_58 AC 163 ms
8,724 KB
testcase_59 AC 363 ms
14,812 KB
testcase_60 AC 2 ms
6,944 KB
testcase_61 AC 1 ms
6,944 KB
testcase_62 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

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