結果

問題 No.2888 Mamehinata
ユーザー ATMATM
提出日時 2024-09-13 21:52:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,441 bytes
コンパイル時間 2,145 ms
コンパイル使用メモリ 184,800 KB
実行使用メモリ 24,156 KB
最終ジャッジ日時 2024-09-13 21:53:00
合計ジャッジ時間 18,299 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 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 2 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 58 ms
5,376 KB
testcase_14 AC 177 ms
11,008 KB
testcase_15 WA -
testcase_16 AC 489 ms
20,440 KB
testcase_17 WA -
testcase_18 AC 122 ms
6,528 KB
testcase_19 AC 465 ms
19,572 KB
testcase_20 AC 418 ms
16,768 KB
testcase_21 AC 368 ms
16,260 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 513 ms
22,784 KB
testcase_25 AC 508 ms
22,656 KB
testcase_26 AC 472 ms
22,280 KB
testcase_27 AC 399 ms
20,224 KB
testcase_28 AC 100 ms
6,400 KB
testcase_29 AC 194 ms
10,752 KB
testcase_30 AC 506 ms
21,696 KB
testcase_31 AC 453 ms
18,688 KB
testcase_32 AC 280 ms
14,208 KB
testcase_33 AC 384 ms
17,536 KB
testcase_34 AC 319 ms
15,360 KB
testcase_35 AC 301 ms
13,696 KB
testcase_36 AC 554 ms
23,424 KB
testcase_37 AC 599 ms
24,004 KB
testcase_38 AC 153 ms
9,216 KB
testcase_39 AC 490 ms
19,960 KB
testcase_40 AC 638 ms
23,620 KB
testcase_41 AC 91 ms
7,040 KB
testcase_42 AC 508 ms
20,608 KB
testcase_43 AC 417 ms
19,888 KB
testcase_44 AC 442 ms
21,848 KB
testcase_45 AC 527 ms
24,156 KB
testcase_46 AC 61 ms
6,016 KB
testcase_47 AC 430 ms
21,360 KB
testcase_48 AC 300 ms
14,532 KB
testcase_49 AC 23 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 WA -
権限があれば一括ダウンロードができます

ソースコード

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);
    }

    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