結果

問題 No.2888 Mamehinata
ユーザー n0ma_run0ma_ru
提出日時 2024-09-13 21:41:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 1,435 bytes
コンパイル時間 2,589 ms
コンパイル使用メモリ 210,092 KB
実行使用メモリ 16,732 KB
最終ジャッジ日時 2024-09-13 21:41:42
合計ジャッジ時間 10,155 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 51 ms
5,376 KB
testcase_14 AC 33 ms
7,296 KB
testcase_15 AC 156 ms
9,728 KB
testcase_16 AC 180 ms
13,184 KB
testcase_17 AC 23 ms
7,424 KB
testcase_18 AC 95 ms
6,016 KB
testcase_19 AC 199 ms
12,928 KB
testcase_20 AC 162 ms
11,392 KB
testcase_21 AC 161 ms
11,256 KB
testcase_22 AC 55 ms
9,276 KB
testcase_23 AC 86 ms
11,260 KB
testcase_24 AC 180 ms
14,208 KB
testcase_25 AC 133 ms
13,884 KB
testcase_26 AC 130 ms
13,696 KB
testcase_27 AC 57 ms
11,620 KB
testcase_28 AC 25 ms
5,376 KB
testcase_29 AC 70 ms
7,680 KB
testcase_30 AC 198 ms
14,280 KB
testcase_31 AC 160 ms
12,416 KB
testcase_32 AC 111 ms
9,728 KB
testcase_33 AC 146 ms
11,776 KB
testcase_34 AC 125 ms
10,496 KB
testcase_35 AC 97 ms
9,380 KB
testcase_36 AC 216 ms
15,204 KB
testcase_37 AC 222 ms
15,488 KB
testcase_38 AC 54 ms
6,784 KB
testcase_39 AC 203 ms
13,184 KB
testcase_40 AC 231 ms
15,284 KB
testcase_41 AC 32 ms
5,376 KB
testcase_42 AC 189 ms
13,568 KB
testcase_43 AC 133 ms
13,872 KB
testcase_44 AC 149 ms
15,192 KB
testcase_45 AC 181 ms
16,732 KB
testcase_46 AC 22 ms
5,376 KB
testcase_47 AC 147 ms
14,836 KB
testcase_48 AC 134 ms
10,688 KB
testcase_49 AC 22 ms
5,376 KB
testcase_50 AC 75 ms
5,888 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>
using namespace std;
using ll = long long;
#define ALL(v) v.begin(),v.end()
#define dbg(x) cerr << #x << ": " << (x) << endl;
template<class F, class S>
ostream& operator<<(ostream& os, pair<F,S>& p) {
    os << '(' << p.first << ',' << p.second << ')';
    return os;
}
template<class Iter>
void print(Iter beg, Iter end) {
    for (Iter itr = beg; itr != end; ++itr) {
        cerr << *itr << ' ';
    }
    cerr << '\n';
}
int N,M;
vector<vector<int>> G;
int main() {
    cin >> N >> M;
    G.resize(N);
    for (int i = 0; i < M; ++i) {
        int a,b; cin >> a >> b;
        --a; --b;
        G[a].push_back(b);
        G[b].push_back(a);
    }
    if (G[0].empty()) {
        for (int i = 0; i < N; ++i) {
            cout << "0\n";
        }
        return 0;
    }
    vector<int> dis(N,1e9);
    queue<int> q;
    dis[0] = 0;
    q.push(0);
    while (q.size()) {
        int pos = q.front(); q.pop();
        for (int to : G[pos]) {
            if (dis[to] > dis[pos] + 1) {
                dis[to] = dis[pos] + 1;
                q.push(to);
            }
        }
    }
    // print(ALL(dis));
    vector<int> cnt(N+1);
    int iso = 0;
    for (int i = 0; i < N; ++i) {
        if (dis[i] == 1e9) ++iso;
        else cnt[dis[i]]++;
    }
    int even=1, odd=0;
    for (int i = 1; i <= N; ++i) {
        (i % 2 == 0 ? even : odd) += cnt[i];
        cout << (i%2==0 ? even : odd) << '\n';
    }
}
0