結果

問題 No.2888 Mamehinata
ユーザー ja14378ja14378
提出日時 2024-09-13 21:49:00
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 385 ms / 2,000 ms
コード長 1,277 bytes
コンパイル時間 2,368 ms
コンパイル使用メモリ 208,888 KB
実行使用メモリ 16,628 KB
最終ジャッジ日時 2024-09-13 21:49:41
合計ジャッジ時間 13,970 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 52
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/all>
using ll = long long;
const int MOD = 1000000007;
const int Mod = 998244353;
const int MAX = 1000000005;
const long long INF = 1000000000000000005LL;
using namespace std;
//using namespace atcoder;



int main() {
    ios::sync_with_stdio(0); cin.tie();
    int N, M;
    cin >> N >> M;
    vector<vector<int>> G(N);
    int deg = 0;
    for (int i = 0; i < M; i++) {
        int u, v;
        cin >> u >> v;
        u--; v--;
        G[u].push_back(v);
        G[v].push_back(u);
        if (u == 0 || v == 0) deg++;
    }
    if (deg == 0) {
        for (int i = 0; i < N; i++) {
            cout << 0 << endl;
        }
        return 0;
    }
    vector<int> dist(N, -1);
    dist[0] = 0;
    queue<int> que;
    que.push(0);
    while (que.size()) {
        int v = que.front();
        que.pop();
        for (int& nv : G[v]) {
            if (dist[nv] != -1) continue;
            dist[nv] = dist[v] + 1;
            que.push(nv);
        }
    }
    vector<int> cnt(N+1);
    for (int i = 0; i < N; i++) {
        if (dist[i] == -1) continue;
        cnt[dist[i]]++;
    }
    vector<int> tot(2);
    tot[1] = 1;
    for (int i = 0; i < N; i++) {
        tot[i%2] += cnt[i+1];
        cout << tot[i%2] << endl;
    }
}
0