結果

問題 No.2888 Mamehinata
ユーザー SnowBeenDidingSnowBeenDiding
提出日時 2024-09-13 21:29:56
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 506 ms / 2,000 ms
コード長 2,559 bytes
コンパイル時間 3,405 ms
コンパイル使用メモリ 264,824 KB
実行使用メモリ 19,780 KB
最終ジャッジ日時 2024-09-13 21:30:17
合計ジャッジ時間 17,808 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 60 ms
6,272 KB
testcase_14 AC 168 ms
8,320 KB
testcase_15 AC 306 ms
13,272 KB
testcase_16 AC 408 ms
15,876 KB
testcase_17 AC 204 ms
10,368 KB
testcase_18 AC 122 ms
7,936 KB
testcase_19 AC 439 ms
16,548 KB
testcase_20 AC 350 ms
14,076 KB
testcase_21 AC 346 ms
13,736 KB
testcase_22 AC 260 ms
12,460 KB
testcase_23 AC 343 ms
15,032 KB
testcase_24 AC 432 ms
16,784 KB
testcase_25 AC 374 ms
16,460 KB
testcase_26 AC 390 ms
16,036 KB
testcase_27 AC 308 ms
13,688 KB
testcase_28 AC 64 ms
5,504 KB
testcase_29 AC 166 ms
8,960 KB
testcase_30 AC 457 ms
16,960 KB
testcase_31 AC 366 ms
14,944 KB
testcase_32 AC 249 ms
11,264 KB
testcase_33 AC 333 ms
14,148 KB
testcase_34 AC 275 ms
12,096 KB
testcase_35 AC 234 ms
11,004 KB
testcase_36 AC 498 ms
18,092 KB
testcase_37 AC 506 ms
18,472 KB
testcase_38 AC 123 ms
7,424 KB
testcase_39 AC 384 ms
15,128 KB
testcase_40 AC 478 ms
17,272 KB
testcase_41 AC 76 ms
5,888 KB
testcase_42 AC 402 ms
15,408 KB
testcase_43 AC 350 ms
16,896 KB
testcase_44 AC 401 ms
18,284 KB
testcase_45 AC 444 ms
19,780 KB
testcase_46 AC 55 ms
5,504 KB
testcase_47 AC 413 ms
17,916 KB
testcase_48 AC 276 ms
12,616 KB
testcase_49 AC 24 ms
5,376 KB
testcase_50 AC 80 ms
8,448 KB
testcase_51 AC 4 ms
5,376 KB
testcase_52 AC 3 ms
5,376 KB
testcase_53 AC 12 ms
5,376 KB
testcase_54 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++)
using namespace std;

typedef long long ll;

template <typename T> struct Graph {
    struct edge {
        int to;
        T cost;
    };
    int N;
    vector<vector<edge>> G;
    vector<T> dist;
    vector<int> prever;

    Graph(int n) { init(n); }
    T inf() {
        if (is_same_v<T, int>)
            return 1e9;
        else
            return 1e18;
    }
    T zero() { return T(0); }

    void init(int n) {
        N = n;
        G.resize(N);
        dist.resize(N, inf());
    }
    void add_edge(int s, int t, T cost) {
        edge e;
        e.to = t, e.cost = cost;
        G[s].push_back(e);
    }
    void dijkstra(int s) {
        rep(i, 0, N) dist[i] = inf();
        prever = vector<int>(N, -1);
        dist[s] = zero();
        priority_queue<pair<T, int>, vector<pair<T, int>>,
                       greater<pair<T, int>>>
            q;
        q.push({zero(), s});
        while (!q.empty()) {
            int now;
            T nowdist;
            tie(nowdist, now) = q.top();
            q.pop();
            if (dist[now] < nowdist)
                continue;
            for (auto e : G[now]) {
                T nextdist = nowdist + e.cost; // 次の頂点への距離
                if (dist[e.to] > nextdist) {
                    prever[e.to] = now;
                    dist[e.to] = nextdist;
                    q.push({dist[e.to], e.to});
                }
            }
        }
    }

    vector<int> get_path(int t) { // tへの最短路構築
        if (dist[t] >= inf())
            return {-1};
        vector<int> path;
        for (; t != -1; t = prever[t]) {
            path.push_back(t);
        }
        reverse(path.begin(), path.end());
        return path;
    }
};

int main() {
    int n, m;
    cin >> n >> m;
    Graph<int> gr(n);
    rep(i, 0, m) {
        int a, b;
        cin >> a >> b;
        a--, b--;
        gr.add_edge(a, b, 1);
        gr.add_edge(b, a, 1);
    }
    gr.dijkstra(0);
    vector<int> dist(n + 10);
    rep(i, 0, n) {
        if (gr.dist[i] != gr.inf()) {
            dist[gr.dist[i]]++;
        }
    }
    int e = dist[0], o = 0;
    vector<int> ans;
    rep(i, 1, n + 1) {
        if (i % 2) {
            o += dist[i];
            ans.push_back(o);
        } else {
            e += dist[i];
            ans.push_back(e);
        }
        if (ans.back() == 0)
            break;
    }
    while (ans.size() < n)
        ans.push_back(0);
    rep(i, 0, n) cout << ans[i] << endl;
}
0