結果

問題 No.2888 Mamehinata
ユーザー n0ma_run0ma_ru
提出日時 2024-09-13 21:31:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,293 bytes
コンパイル時間 3,071 ms
コンパイル使用メモリ 209,604 KB
実行使用メモリ 16,732 KB
最終ジャッジ日時 2024-09-13 21:32:14
合計ジャッジ時間 9,805 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 3 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 3 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 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 62 ms
5,376 KB
testcase_14 AC 33 ms
7,296 KB
testcase_15 WA -
testcase_16 AC 174 ms
13,132 KB
testcase_17 WA -
testcase_18 AC 94 ms
6,016 KB
testcase_19 AC 203 ms
12,928 KB
testcase_20 AC 161 ms
11,376 KB
testcase_21 AC 161 ms
11,136 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 162 ms
14,236 KB
testcase_25 AC 133 ms
13,952 KB
testcase_26 AC 137 ms
13,644 KB
testcase_27 AC 59 ms
11,644 KB
testcase_28 AC 26 ms
5,376 KB
testcase_29 AC 68 ms
7,808 KB
testcase_30 AC 198 ms
14,336 KB
testcase_31 AC 158 ms
12,416 KB
testcase_32 AC 104 ms
9,728 KB
testcase_33 AC 139 ms
11,776 KB
testcase_34 AC 112 ms
10,452 KB
testcase_35 AC 93 ms
9,556 KB
testcase_36 AC 220 ms
15,152 KB
testcase_37 AC 221 ms
15,488 KB
testcase_38 AC 58 ms
6,784 KB
testcase_39 AC 181 ms
13,156 KB
testcase_40 AC 226 ms
15,264 KB
testcase_41 AC 31 ms
5,376 KB
testcase_42 AC 186 ms
13,516 KB
testcase_43 AC 137 ms
13,872 KB
testcase_44 AC 148 ms
15,196 KB
testcase_45 AC 167 ms
16,732 KB
testcase_46 AC 22 ms
5,376 KB
testcase_47 AC 144 ms
14,832 KB
testcase_48 AC 128 ms
10,692 KB
testcase_49 AC 23 ms
5,376 KB
testcase_50 AC 75 ms
6,016 KB
testcase_51 AC 5 ms
5,376 KB
testcase_52 AC 3 ms
5,376 KB
testcase_53 AC 12 ms
5,376 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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);
    }
    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);
    for (int i = 0; i < N; ++i) {
        if (dis[i] == 1e9) continue;
        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