結果

問題 No.2888 Mamehinata
ユーザー maeshunmaeshun
提出日時 2024-09-14 11:41:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,338 bytes
コンパイル時間 4,987 ms
コンパイル使用メモリ 265,368 KB
実行使用メモリ 16,860 KB
最終ジャッジ日時 2024-09-14 11:42:24
合計ジャッジ時間 19,909 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 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 3 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 59 ms
5,376 KB
testcase_14 AC 172 ms
7,424 KB
testcase_15 WA -
testcase_16 AC 382 ms
13,304 KB
testcase_17 WA -
testcase_18 AC 122 ms
6,016 KB
testcase_19 AC 427 ms
13,032 KB
testcase_20 AC 334 ms
11,388 KB
testcase_21 AC 324 ms
11,136 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 408 ms
14,216 KB
testcase_25 AC 409 ms
13,904 KB
testcase_26 AC 376 ms
13,696 KB
testcase_27 AC 302 ms
11,732 KB
testcase_28 AC 62 ms
5,376 KB
testcase_29 AC 159 ms
7,808 KB
testcase_30 AC 439 ms
14,208 KB
testcase_31 AC 337 ms
12,416 KB
testcase_32 AC 233 ms
9,856 KB
testcase_33 AC 340 ms
11,696 KB
testcase_34 AC 263 ms
10,488 KB
testcase_35 AC 222 ms
9,600 KB
testcase_36 AC 452 ms
15,340 KB
testcase_37 AC 477 ms
15,596 KB
testcase_38 AC 127 ms
6,944 KB
testcase_39 AC 383 ms
13,312 KB
testcase_40 AC 497 ms
15,336 KB
testcase_41 AC 76 ms
5,504 KB
testcase_42 AC 394 ms
13,524 KB
testcase_43 AC 329 ms
14,000 KB
testcase_44 AC 371 ms
15,192 KB
testcase_45 AC 412 ms
16,860 KB
testcase_46 AC 53 ms
5,376 KB
testcase_47 AC 388 ms
14,832 KB
testcase_48 AC 263 ms
10,692 KB
testcase_49 AC 23 ms
5,376 KB
testcase_50 AC 75 ms
5,888 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>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i, n) for(int i=0;i<(n);++i)
#define rep1(i, n) for(int i=1;i<=(n);i++)
#define ll long long
using mint = modint998244353;
using P = pair<ll,ll>;
using lb = long double;
using T = tuple<ll, ll, ll>;
#ifdef LOCAL
#  include <debug_print.hpp>
#  define dbg(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#  define dbg(...) (static_cast<void>(0))
#endif

int main()
{
    int n,m;
    cin >> n >> m;
    vector<vector<int>> g(n);
    rep(i,m){
        int u, v;
        cin >> u >> v;
        --u;--v;
        g[u].push_back(v);
        g[v].push_back(u);
    }
    vector<int> dist(n, 1e9);
    queue<int> q;
    dist[0] = 0;
    q.push(0);
    while(!q.empty()) {
        int u = q.front();q.pop();
        for(int v : g[u]) {
            if(dist[v]==1e9) {
                dist[v] = dist[u] + 1;
                q.push(v);
            }
        }
    }
    int even = 1;
    int odd = 0;
    vector<int> d(n+2);
    rep(i,n) {
        if(dist[i]==1e9) continue;
        d[dist[i]]++;
    }
    dbg(d);
    rep(i,n) {
        if(i%2==0) {
            odd += d[i+1];
            cout << odd << endl;
        }
        else{
            even += d[i+1];
            cout << even << endl;
        }
    }

    return 0;
}
0