結果

問題 No.479 頂点は要らない
ユーザー arrowsarrows
提出日時 2017-01-28 01:03:30
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 84 ms / 1,500 ms
コード長 923 bytes
コンパイル時間 670 ms
コンパイル使用メモリ 74,768 KB
実行使用メモリ 9,656 KB
最終ジャッジ日時 2023-08-25 11:46:34
合計ジャッジ時間 3,612 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 AC 2 ms
4,380 KB
testcase_16 AC 1 ms
4,380 KB
testcase_17 AC 1 ms
4,376 KB
testcase_18 AC 1 ms
4,380 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 2 ms
4,380 KB
testcase_21 AC 2 ms
4,376 KB
testcase_22 AC 2 ms
4,376 KB
testcase_23 AC 2 ms
4,380 KB
testcase_24 AC 2 ms
4,380 KB
testcase_25 AC 2 ms
4,380 KB
testcase_26 AC 78 ms
9,220 KB
testcase_27 AC 84 ms
9,248 KB
testcase_28 AC 68 ms
9,656 KB
testcase_29 AC 66 ms
6,444 KB
testcase_30 AC 66 ms
6,548 KB
testcase_31 AC 67 ms
6,396 KB
testcase_32 AC 66 ms
6,396 KB
testcase_33 AC 63 ms
6,684 KB
testcase_34 AC 68 ms
6,884 KB
testcase_35 AC 60 ms
5,432 KB
testcase_36 AC 34 ms
4,416 KB
testcase_37 AC 69 ms
7,360 KB
testcase_38 AC 58 ms
6,300 KB
testcase_39 AC 41 ms
5,824 KB
testcase_40 AC 49 ms
7,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;

int main()
{
    int N, M;
    cin >> N >> M;
    vector<vector<int>> G(N);
    for (int i = 0; i < M; i++) {
        int a, b;
        cin >> a >> b;
        G[a].emplace_back(b);
        G[b].emplace_back(a);
    }
    
    vector<int> res;
    vector<bool> del(N);
    for (int i = N - 1; i >= 0; i--) {
        bool d = 1;
        for (auto& v : G[i]) {
            if (del[v]) {
                d = 0;
                break;
            }
        }
        if (d) {
            del[i] = 1;
            res.emplace_back(0);
        } else {
            res.emplace_back(1);
        }
    }
    
    bool one = 0;
    for (int i = 0; i < N; i++) {
        if (one) {
            cout << res[i];
        } else {
            if (res[i] == 1) {
                one = 1;
                cout << 1;
            }
        }
    }
    cout << endl;
    return 0;
}
0