結果

問題 No.2888 Mamehinata
ユーザー SnowBeenDidingSnowBeenDiding
提出日時 2024-09-13 21:26:24
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,398 bytes
コンパイル時間 3,517 ms
コンパイル使用メモリ 262,260 KB
実行使用メモリ 19,808 KB
最終ジャッジ日時 2024-09-13 21:26:46
合計ジャッジ時間 11,439 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 56 ms
6,400 KB
testcase_14 AC 36 ms
7,680 KB
testcase_15 WA -
testcase_16 AC 225 ms
14,828 KB
testcase_17 WA -
testcase_18 AC 99 ms
8,064 KB
testcase_19 AC 228 ms
15,140 KB
testcase_20 AC 183 ms
13,256 KB
testcase_21 AC 187 ms
13,220 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 185 ms
15,632 KB
testcase_25 AC 136 ms
15,100 KB
testcase_26 AC 136 ms
14,848 KB
testcase_27 AC 61 ms
12,416 KB
testcase_28 AC 30 ms
5,376 KB
testcase_29 AC 96 ms
8,320 KB
testcase_30 AC 229 ms
15,744 KB
testcase_31 AC 186 ms
13,824 KB
testcase_32 AC 115 ms
10,624 KB
testcase_33 AC 166 ms
12,928 KB
testcase_34 AC 137 ms
11,520 KB
testcase_35 AC 105 ms
10,368 KB
testcase_36 AC 247 ms
16,880 KB
testcase_37 AC 264 ms
17,280 KB
testcase_38 AC 54 ms
7,168 KB
testcase_39 AC 191 ms
13,788 KB
testcase_40 AC 250 ms
16,128 KB
testcase_41 AC 32 ms
5,504 KB
testcase_42 AC 194 ms
14,208 KB
testcase_43 AC 160 ms
16,896 KB
testcase_44 AC 181 ms
18,156 KB
testcase_45 AC 205 ms
19,808 KB
testcase_46 AC 24 ms
5,376 KB
testcase_47 AC 178 ms
17,876 KB
testcase_48 AC 144 ms
12,492 KB
testcase_49 AC 24 ms
5,376 KB
testcase_50 AC 77 ms
8,448 KB
testcase_51 AC 4 ms
5,376 KB
testcase_52 AC 2 ms
5,376 KB
testcase_53 AC 12 ms
5,376 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
    rep(i, 1, n + 1) {
        if (i % 2) {
            o += dist[i];
            cout << o << '\n';
        } else {
            e += dist[i];
            cout << e << '\n';
        }
    }
}
0