結果

問題 No.2888 Mamehinata
ユーザー k1suxuk1suxu
提出日時 2024-09-13 22:25:59
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,006 bytes
コンパイル時間 4,497 ms
コンパイル使用メモリ 274,936 KB
実行使用メモリ 22,768 KB
最終ジャッジ日時 2024-09-13 22:26:17
合計ジャッジ時間 16,531 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 29 ms
6,144 KB
testcase_14 AC 131 ms
9,344 KB
testcase_15 WA -
testcase_16 AC 305 ms
18,048 KB
testcase_17 WA -
testcase_18 AC 67 ms
8,320 KB
testcase_19 AC 315 ms
18,304 KB
testcase_20 AC 255 ms
15,872 KB
testcase_21 AC 239 ms
15,552 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 339 ms
19,556 KB
testcase_25 AC 356 ms
19,072 KB
testcase_26 AC 352 ms
18,796 KB
testcase_27 AC 282 ms
16,396 KB
testcase_28 AC 58 ms
5,888 KB
testcase_29 AC 126 ms
9,728 KB
testcase_30 AC 350 ms
19,072 KB
testcase_31 AC 264 ms
16,628 KB
testcase_32 AC 210 ms
12,800 KB
testcase_33 AC 248 ms
15,616 KB
testcase_34 AC 209 ms
13,696 KB
testcase_35 AC 198 ms
12,288 KB
testcase_36 AC 379 ms
20,604 KB
testcase_37 AC 394 ms
21,132 KB
testcase_38 AC 100 ms
7,936 KB
testcase_39 AC 321 ms
16,896 KB
testcase_40 AC 382 ms
19,840 KB
testcase_41 AC 61 ms
6,272 KB
testcase_42 AC 362 ms
17,280 KB
testcase_43 AC 259 ms
18,616 KB
testcase_44 AC 293 ms
20,592 KB
testcase_45 AC 352 ms
22,768 KB
testcase_46 AC 43 ms
5,760 KB
testcase_47 AC 313 ms
19,976 KB
testcase_48 AC 193 ms
14,172 KB
testcase_49 AC 10 ms
5,376 KB
testcase_50 AC 32 ms
8,448 KB
testcase_51 AC 3 ms
5,376 KB
testcase_52 AC 3 ms
5,376 KB
testcase_53 AC 6 ms
5,376 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

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

#define rep(i,n) for(int i = 0; i < (int)n; i++)
#define FOR(n) for(int i = 0; i < (int)n; i++)
#define repi(i,a,b) for(int i = (int)a; i < (int)b; i++)
#define all(x) x.begin(),x.end()
//#define mp make_pair
#define vi vector<int>
#define vvi vector<vi>
#define vvvi vector<vvi>
#define vvvvi vector<vvvi>
#define pii pair<int,int>
#define vpii vector<pair<int,int>>

template<typename T>
bool chmax(T &a, const T b) {if(a<b) {a=b; return true;} else {return false;}}
template<typename T>
bool chmin(T &a, const T b) {if(a>b) {a=b; return true;} else {return false;}}

using ll = long long;
using ld = long double;
using ull = unsigned long long;

const ll INF = numeric_limits<long long>::max() / 2;
const ld pi = 3.1415926535897932384626433832795028;
const ll mod = 998244353;
int dx[] = {1, 0, -1, 0, -1, -1, 1, 1};
int dy[] = {0, 1, 0, -1, -1, 1, -1, 1};

#define int long long

void solve() {
    int n, m;
    cin >> n >> m;
    vvi g(n);
    FOR(m) {
        int u, v;
        cin >> u >> v;
        --u;
        --v;
        g[u].emplace_back(v);
        g[v].emplace_back(u);
    }

    vi dist(n, -1);
    dist[0] = 0;
    queue<int> que;
    que.push(0);
    while(!que.empty()) {
        int v = que.front();
        que.pop();

        for(auto e : g[v]) if(dist[e] < 0) {
            dist[e] = dist[v] + 1;
            que.push(e);
        }
    }

    vi cnt(n+1, 0);
    for(auto e : dist) if(e >= 0) cnt[e]++;

    vi odd_sum(n+2, 0), even_sum(n+2, 0);
    FOR(n+1) {
        odd_sum[i+1] = odd_sum[i];
        even_sum[i+1] = even_sum[i];
        if(i&1) even_sum[i+1] += cnt[i];
        else odd_sum[i+1] += cnt[i];
    }
    
    repi(i, 1, n+1) {
        if(i&1) cout << even_sum[i+1] << endl;
        else cout << odd_sum[i+1] << endl;
    }
}

signed main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    solve();
    return 0;
}
0