結果

問題 No.2888 Mamehinata
ユーザー kaede2020kaede2020
提出日時 2024-09-13 22:25:39
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,348 bytes
コンパイル時間 7,324 ms
コンパイル使用メモリ 337,140 KB
実行使用メモリ 14,492 KB
最終ジャッジ日時 2024-09-13 22:25:57
合計ジャッジ時間 13,964 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 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 3 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 TLE -
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
#define ll long long
#define rep(i, n) for (ll i = 0; i < (ll)(n); i++)
using mint = modint998244353;
#define ull unsigned long long
random_device rnd;
mt19937 mt(rnd());
int RandInt(int a, int b) {
    return a + mt() % (b - a + 1);
}

int main() {
    int N, M;
    cin >> N >> M;
    vector<vector<int>> to(N);
    for (int i = 0; i < M; ++i) {
        int u, v;
        cin >> u >> v;
        u--; v--; 
        to[u].push_back(v);
        to[v].push_back(u);
    }
    vector<int> color(N, 0); // 0:白, 1:黒
    color[0] = 1; 
    vector<int> black_cnt(N); 
    for (int t = 0; t < N; ++t) {
        set<int> red;
        rep(u,N) {
            if (color[u] == 0) {
                for (int v : to[u]) {
                    if (color[v] == 1) {
                        red.insert(u);
                        break;
                    }
                }
            }
        }
        rep(u,N) {
            if (color[u] == 1) {
                color[u] = 0;
            }
        }
        for (int u : red) {
            color[u] = 1;
        }
        int cnt = 0;
        rep(u,N) {
            if (color[u] == 1) {
                cnt++;
            }
        }
        black_cnt[t] = cnt;
        cout << cnt << endl;
    }
    return 0;
}
0