結果

問題 No.2888 Mamehinata
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-09-13 21:56:46
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,576 bytes
コンパイル時間 3,188 ms
コンパイル使用メモリ 264,512 KB
実行使用メモリ 61,400 KB
最終ジャッジ日時 2024-09-13 21:57:07
合計ジャッジ時間 19,166 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 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 2 ms
5,376 KB
testcase_13 AC 73 ms
18,816 KB
testcase_14 AC 157 ms
15,872 KB
testcase_15 WA -
testcase_16 AC 507 ms
49,744 KB
testcase_17 WA -
testcase_18 AC 151 ms
28,416 KB
testcase_19 AC 499 ms
53,732 KB
testcase_20 AC 444 ms
46,204 KB
testcase_21 AC 402 ms
45,992 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 489 ms
50,764 KB
testcase_25 AC 435 ms
43,008 KB
testcase_26 AC 459 ms
45,740 KB
testcase_27 AC 333 ms
28,544 KB
testcase_28 AC 75 ms
11,648 KB
testcase_29 AC 194 ms
24,064 KB
testcase_30 AC 550 ms
54,052 KB
testcase_31 AC 431 ms
45,712 KB
testcase_32 AC 290 ms
33,388 KB
testcase_33 AC 421 ms
42,624 KB
testcase_34 AC 328 ms
36,864 KB
testcase_35 AC 282 ms
32,000 KB
testcase_36 AC 599 ms
58,680 KB
testcase_37 AC 590 ms
60,232 KB
testcase_38 AC 145 ms
20,224 KB
testcase_39 AC 440 ms
50,944 KB
testcase_40 AC 559 ms
61,184 KB
testcase_41 AC 89 ms
13,824 KB
testcase_42 AC 455 ms
52,736 KB
testcase_43 AC 391 ms
49,968 KB
testcase_44 AC 465 ms
55,128 KB
testcase_45 AC 487 ms
61,400 KB
testcase_46 AC 63 ms
10,788 KB
testcase_47 AC 446 ms
53,748 KB
testcase_48 AC 321 ms
50,196 KB
testcase_49 AC 31 ms
11,776 KB
testcase_50 AC 101 ms
31,872 KB
testcase_51 AC 5 ms
5,376 KB
testcase_52 AC 3 ms
5,376 KB
testcase_53 AC 15 ms
6,944 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

template <class T>
struct Edge {
    Edge() {}
    Edge(int to_, T cost_) : to(to_), cost(cost_) {}
    Edge(int from_, int to_, T cost_) : from(from_), to(to_), cost(cost_) {}
    Edge(int from_, int to_, T cost_, int idx_) : from(from_), to(to_), cost(cost_), idx(idx_) {}
    
    int from, to;
    T cost;
    int idx;
};

template <class T> using Graph = vector<vector<Edge<T>>>;
using graph = Graph<long long>;
using edge = Edge<long long>;

#define add emplace_back

struct Dijkstra {
    private:
    graph g;
    int n, s;
    vector<long long> d;
    vector<edge> prev;
    vector<bool> visit;
    priority_queue<pair<long long, int>, vector<pair<long long, int>>, greater<pair<long long, int>>> pq;
    
    public:
    Dijkstra(graph g_, int s_) : g(g_), n(g.size()), s(s_), d(n, 1000000000000000000), prev(n), visit(n, false) {
        d[s] = 0LL;
        pq.emplace(d[s], s);
        while (!pq.empty()) {
            int v = pq.top().second;
            pq.pop();
            if (visit[v]) {
                continue;
            }
            visit[v] = true;
            for (auto e : g[v]) {
                int nv = e.to;
                long long nc = e.cost;
                if (d[nv] > d[v] + nc) {
                    d[nv] = d[v] + nc;
                    prev[nv] = e;
                    pq.emplace(d[nv], nv);
                }
            }
        }
    }
    
    vector<long long> dists() {
        return d;
    }
    
    long long dist(int t) {
        return d[t];
    }
    
    vector<edge> route(int t) {
        if (s == t || d[t] == 1000000000000000000) {
            return {};
        }
        vector<edge> res;
        int cur = t;
        while (cur != s) {
            res.emplace_back(prev[cur]);
            cur = prev[cur].from;
        }
        reverse(res.begin(), res.end());
        return res;
    }
};

int main() {
    int n, m;
    cin >> n >> m;
    graph g(n);
    for (int i = 0; i < m; i++) {
        int u, v;
        cin >> u >> v;
        u--;
        v--;
        g[u].add(v, 1LL);
        g[v].add(u, 1LL);
    }
    vector<long long> d = Dijkstra(g, 0).dists();
    vector<int> cnt(200010, 0);
    for (int i = 0; i < n; i++) {
        if (d[i] != 1000000000000000000) {
            cnt[d[i]]++;
        }
    }
    int even = cnt[0], odd = 0;
    for (int i = 1; i <= n; i++) {
        if (i % 2 == 0) {
            even += cnt[i];
            cout << even << endl;
        } else {
            odd += cnt[i];
            cout << odd << endl;
        }
    }
}
0