結果

問題 No.2888 Mamehinata
ユーザー pia019pia019
提出日時 2024-09-13 22:03:59
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 975 bytes
コンパイル時間 3,727 ms
コンパイル使用メモリ 267,104 KB
実行使用メモリ 16,116 KB
最終ジャッジ日時 2024-09-13 22:04:26
合計ジャッジ時間 15,689 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 WA -
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 28 ms
6,940 KB
testcase_14 AC 133 ms
6,940 KB
testcase_15 WA -
testcase_16 AC 306 ms
11,836 KB
testcase_17 WA -
testcase_18 AC 65 ms
6,940 KB
testcase_19 AC 310 ms
11,904 KB
testcase_20 AC 256 ms
10,368 KB
testcase_21 AC 245 ms
10,240 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 394 ms
12,800 KB
testcase_25 AC 329 ms
12,392 KB
testcase_26 AC 330 ms
12,196 KB
testcase_27 AC 298 ms
10,004 KB
testcase_28 AC 52 ms
6,944 KB
testcase_29 AC 132 ms
7,168 KB
testcase_30 AC 335 ms
12,868 KB
testcase_31 AC 282 ms
11,336 KB
testcase_32 AC 199 ms
9,080 KB
testcase_33 AC 267 ms
10,704 KB
testcase_34 AC 214 ms
9,572 KB
testcase_35 AC 185 ms
8,704 KB
testcase_36 AC 385 ms
13,796 KB
testcase_37 AC 400 ms
13,952 KB
testcase_38 AC 107 ms
6,944 KB
testcase_39 AC 338 ms
11,900 KB
testcase_40 AC 414 ms
13,728 KB
testcase_41 AC 66 ms
6,940 KB
testcase_42 AC 359 ms
12,264 KB
testcase_43 AC 266 ms
13,388 KB
testcase_44 AC 297 ms
14,572 KB
testcase_45 AC 345 ms
16,116 KB
testcase_46 AC 45 ms
6,940 KB
testcase_47 AC 304 ms
14,340 KB
testcase_48 AC 202 ms
10,204 KB
testcase_49 AC 11 ms
6,944 KB
testcase_50 AC 31 ms
6,940 KB
testcase_51 AC 3 ms
6,940 KB
testcase_52 AC 3 ms
6,940 KB
testcase_53 AC 6 ms
6,940 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int INF = 1<<30;
const ll INFLL = 1LL<<60;
const ll MOD = 998244343;


int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int n, m; cin >> n >> m;
    vector<vector<int>> G(n);
    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);
    }
    
    //queue<pair<int, int>> q;
    queue<int> q;
    vector<bool> visited(n, false); visited[0] = true;
    vector<int> ans(2); ans[1] = 1;
    q.emplace(0);
    for (int i = 0; i < n; i++){
        queue<int> nq;
        while (!q.empty()){
            int v = q.front(); q.pop();
            for (int nv : G[v]){
                if (visited[nv]) continue;
                visited[nv] = true;
                ans[i % 2]++;
                nq.emplace(nv);
            }
        }
        q = nq;
        cout << ans[i % 2] << endl;
    }
    return 0;
}
0