結果

問題 No.2888 Mamehinata
ユーザー kaede2020kaede2020
提出日時 2024-09-13 22:30:33
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,811 bytes
コンパイル時間 7,375 ms
コンパイル使用メモリ 338,420 KB
実行使用メモリ 16,772 KB
最終ジャッジ日時 2024-09-13 22:30:59
合計ジャッジ時間 21,756 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
12,316 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
6,944 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 3 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 60 ms
5,376 KB
testcase_14 AC 146 ms
7,296 KB
testcase_15 AC 305 ms
10,624 KB
testcase_16 AC 802 ms
16,016 KB
testcase_17 AC 209 ms
8,564 KB
testcase_18 AC 128 ms
6,656 KB
testcase_19 AC 755 ms
16,000 KB
testcase_20 AC 546 ms
13,868 KB
testcase_21 AC 524 ms
13,664 KB
testcase_22 AC 262 ms
10,496 KB
testcase_23 AC 354 ms
13,056 KB
testcase_24 AC 969 ms
16,772 KB
testcase_25 AC 393 ms
13,952 KB
testcase_26 AC 1,025 ms
14,648 KB
testcase_27 AC 317 ms
11,776 KB
testcase_28 AC 549 ms
5,888 KB
testcase_29 TLE -
testcase_30 TLE -
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);
    rep(i,M) {
        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); 
    int even_before=-1;
    int odd_before=-1;
    bool flag_even=false;
    bool flag_odd=false;
    for (int t = 0; t < N; ++t) {
        if(flag_even&&flag_odd){
            if(t%2==0)cout << even_before << endl;
            else cout<<odd_before<<endl;
            
            continue;
        }
        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;
        if(t%2==0&&even_before==cnt){
            flag_even=true;
        }
        if(t%2==1&&odd_before==cnt){
            flag_odd=true;
        }
        if(t%2==0)even_before=cnt;
        else odd_before=cnt;
    }
    return 0;
}
0