結果

問題 No.2888 Mamehinata
ユーザー ATMATM
提出日時 2024-09-13 21:54:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 644 ms / 2,000 ms
コード長 2,566 bytes
コンパイル時間 1,926 ms
コンパイル使用メモリ 185,176 KB
実行使用メモリ 24,284 KB
最終ジャッジ日時 2024-09-13 21:55:40
合計ジャッジ時間 18,299 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 59 ms
5,376 KB
testcase_14 AC 181 ms
11,008 KB
testcase_15 AC 286 ms
9,600 KB
testcase_16 AC 458 ms
20,480 KB
testcase_17 AC 230 ms
7,424 KB
testcase_18 AC 124 ms
6,528 KB
testcase_19 AC 479 ms
19,584 KB
testcase_20 AC 385 ms
16,896 KB
testcase_21 AC 389 ms
16,384 KB
testcase_22 AC 258 ms
9,344 KB
testcase_23 AC 343 ms
11,392 KB
testcase_24 AC 534 ms
22,784 KB
testcase_25 AC 485 ms
22,528 KB
testcase_26 AC 506 ms
22,272 KB
testcase_27 AC 419 ms
20,224 KB
testcase_28 AC 72 ms
6,272 KB
testcase_29 AC 191 ms
10,752 KB
testcase_30 AC 571 ms
21,760 KB
testcase_31 AC 427 ms
18,688 KB
testcase_32 AC 284 ms
14,208 KB
testcase_33 AC 404 ms
17,536 KB
testcase_34 AC 322 ms
15,360 KB
testcase_35 AC 271 ms
13,824 KB
testcase_36 AC 592 ms
23,424 KB
testcase_37 AC 575 ms
23,936 KB
testcase_38 AC 154 ms
9,344 KB
testcase_39 AC 506 ms
19,968 KB
testcase_40 AC 644 ms
23,552 KB
testcase_41 AC 92 ms
7,040 KB
testcase_42 AC 504 ms
20,608 KB
testcase_43 AC 397 ms
19,892 KB
testcase_44 AC 446 ms
21,848 KB
testcase_45 AC 507 ms
24,284 KB
testcase_46 AC 64 ms
6,144 KB
testcase_47 AC 437 ms
21,356 KB
testcase_48 AC 304 ms
14,532 KB
testcase_49 AC 23 ms
5,376 KB
testcase_50 AC 76 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 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define CPP_STR(x) CPP_STR_I(x)
#define CPP_CAT(x, y) CPP_CAT_I(x, y)
#define CPP_STR_I(args...) #args
#define CPP_CAT_I(x, y) x##y

#define ASSERT(expr...) assert((expr))

using i8 = int8_t;
using u8 = uint8_t;
using i16 = int16_t;
using u16 = uint16_t;
using i32 = int32_t;
using u32 = uint32_t;
using i64 = int64_t;
using u64 = uint64_t;

using f32 = float;
using f64 = double;
// }}}

constexpr i64 INF = 1'010'000'000'000'000'017LL;

constexpr i64 MOD = 998244353LL;

constexpr f64 EPS = 1e-12;

constexpr f64 PI = 3.14159265358979323846;

#define M5 100007
#define M9 1000000000

#define F first
#define S second

// util {{{
#define FOR(i, start, end) for (i64 i = (start), CPP_CAT(i, xxxx_end) = (end); i < CPP_CAT(i, xxxx_end); ++i)
#define REP(i, n) FOR(i, 0, n)

#define all(x) (x).begin(), (x).end()
#define ll long long int
#define VI vector<ll>
#define VVI vector<VI>

#define ISD true
#define debug(x) \
    if (ISD)     \
    cout << #x << ": " << x << endl

template <typename T, typename U, typename Comp = less<>>
bool chmax(T &xmax, const U &x, Comp comp = {})
{
    if (comp(xmax, x))
    {
        xmax = x;
        return true;
    }
    return false;
}

template <typename T, typename U, typename Comp = less<>>
bool chmin(T &xmin, const U &x, Comp comp = {})
{
    if (comp(x, xmin))
    {
        xmin = x;
        return true;
    }
    return false;
}

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);
    }
    if (G[0].size() == 0)
    {
        REP(i, N)
        {
            cout << 0 << endl;
        }
        return 0;
    }

    vector<int> d(N, -1); // 既に見たことがある頂点か記録する
    queue<int> que;
    que.emplace(0); // sから探索する
    d[0] = 0;
    while (que.size() != 0)
    {                            // 幅優先探索
        int state = que.front(); // 現在の状態
        que.pop();
        for (auto next : G[state])
        {
            if (d[next] == -1)
            { // 未探索の時のみ行う
                d[next] = d[state] + 1;
                que.emplace(next); // 次の状態をqueueへ格納
            }
        }
    }
    map<int, int> MP;

    vector<ll> bw(2);

    REP(i, N)
    {
        MP[d[i]]++;
    }
    bw[0]++;
    REP(i, N)
    {
        cout << bw[(i + 1) % 2] + MP[i + 1] << endl;
        bw[(i + 1) % 2] += MP[i + 1];
    }
}
0