結果

問題 No.2888 Mamehinata
ユーザー Fu_LFu_L
提出日時 2024-09-26 08:49:57
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,869 bytes
コンパイル時間 4,349 ms
コンパイル使用メモリ 287,412 KB
実行使用メモリ 21,744 KB
最終ジャッジ日時 2024-09-26 08:50:11
合計ジャッジ時間 12,182 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 ms
5,376 KB
testcase_04 WA -
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 WA -
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 27 ms
8,448 KB
testcase_14 AC 21 ms
8,064 KB
testcase_15 WA -
testcase_16 AC 117 ms
17,368 KB
testcase_17 WA -
testcase_18 AC 63 ms
11,392 KB
testcase_19 AC 121 ms
18,472 KB
testcase_20 AC 98 ms
16,188 KB
testcase_21 AC 95 ms
16,128 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 87 ms
17,636 KB
testcase_25 AC 61 ms
16,608 KB
testcase_26 AC 71 ms
16,096 KB
testcase_27 AC 32 ms
12,864 KB
testcase_28 AC 16 ms
5,760 KB
testcase_29 AC 39 ms
9,600 KB
testcase_30 AC 111 ms
18,596 KB
testcase_31 AC 118 ms
16,072 KB
testcase_32 AC 67 ms
12,288 KB
testcase_33 AC 87 ms
15,264 KB
testcase_34 AC 72 ms
13,412 KB
testcase_35 AC 63 ms
11,904 KB
testcase_36 AC 136 ms
20,096 KB
testcase_37 AC 142 ms
20,480 KB
testcase_38 AC 30 ms
8,192 KB
testcase_39 AC 96 ms
17,280 KB
testcase_40 AC 139 ms
20,080 KB
testcase_41 AC 18 ms
6,272 KB
testcase_42 AC 103 ms
17,664 KB
testcase_43 AC 89 ms
18,116 KB
testcase_44 AC 95 ms
19,692 KB
testcase_45 AC 122 ms
21,744 KB
testcase_46 AC 14 ms
5,556 KB
testcase_47 AC 103 ms
19,464 KB
testcase_48 AC 83 ms
16,404 KB
testcase_49 AC 11 ms
6,016 KB
testcase_50 AC 33 ms
12,544 KB
testcase_51 AC 3 ms
5,376 KB
testcase_52 AC 2 ms
5,376 KB
testcase_53 AC 7 ms
5,376 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<ll, ll>;
#define rep(i, a, b) for(ll i = a; i < b; ++i)
#define rrep(i, a, b) for(ll i = a; i >= b; --i)
constexpr ll inf = 4e18;
struct SetupIO {
    SetupIO() {
        ios::sync_with_stdio(0);
        cin.tie(0);
        cout << fixed << setprecision(30);
    }
} setup_io;
template <typename T>
struct Edge {
    int from, to;
    T cost;
    int idx;
    Edge()
        : from(-1), to(-1), cost(-1), idx(-1) {}
    Edge(int from, int to, const T& cost = 1, int idx = -1)
        : from(from), to(to), cost(cost), idx(idx) {}
    operator int() const {
        return to;
    }
};
template <typename T>
struct Graph {
    Graph(int N)
        : n(N), es(0), g(N) {}
    int size() const {
        return n;
    }
    int edge_size() const {
        return es;
    }
    void add_edge(int from, int to, const T& cost = 1) {
        assert(0 <= from and from < n);
        assert(0 <= to and to < n);
        g[from].emplace_back(from, to, cost, es);
        g[to].emplace_back(to, from, cost, es++);
    }
    void add_directed_edge(int from, int to, const T& cost = 1) {
        assert(0 <= from and from < n);
        assert(0 <= to and to < n);
        g[from].emplace_back(from, to, cost, es++);
    }
    inline vector<Edge<T>>& operator[](const int& k) {
        assert(0 <= k and k < n);
        return g[k];
    }
    inline const vector<Edge<T>>& operator[](const int& k) const {
        assert(0 <= k and k < n);
        return g[k];
    }

   private:
    int n, es;
    vector<vector<Edge<T>>> g;
};
template <typename T>
using Edges = vector<Edge<T>>;
template <typename T>
vector<pair<T, int>> dijkstra(const Graph<T>& g, const int s = 0) {
    const int n = g.size();
    assert(0 <= s and s < n);
    vector<pair<T, int>> d(n, {numeric_limits<T>::max(), -1});
    priority_queue<pair<T, int>, vector<pair<T, int>>, greater<pair<T, int>>> pq;
    d[s] = {0, -1};
    pq.emplace(0, s);
    while(!pq.empty()) {
        const auto [dist, cur] = pq.top();
        pq.pop();
        if(d[cur].first < dist) continue;
        for(const Edge<T>& e : g[cur]) {
            if(d[e.to].first > d[cur].first + e.cost) {
                d[e.to] = {d[cur].first + e.cost, cur};
                pq.emplace(d[e.to].first, e.to);
            }
        }
    }
    return d;
}
int main(void) {
    int n, m;
    cin >> n >> m;
    Graph<int> g(n);
    rep(i, 0, m) {
        int u, v;
        cin >> u >> v;
        u--;
        v--;
        g.add_edge(u, v);
    }
    vector<pair<int, int>> d = dijkstra(g, 0);
    vector<int> ans(n + 1);
    rep(i, 0, n) {
        if(d[i].first == numeric_limits<int>::max()) continue;
        ans[d[i].first]++;
    }
    rep(i, 1, n + 1) {
        if(i >= 2) {
            ans[i] += ans[i - 2];
        }
        cout << ans[i] << '\n';
    }
}
0