結果

問題 No.479 頂点は要らない
ユーザー uenokuuenoku
提出日時 2017-01-27 23:25:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 100 ms / 1,500 ms
コード長 1,696 bytes
コンパイル時間 701 ms
コンパイル使用メモリ 86,904 KB
実行使用メモリ 31,456 KB
最終ジャッジ日時 2024-06-06 05:19:44
合計ジャッジ時間 3,795 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
27,008 KB
testcase_01 AC 19 ms
26,880 KB
testcase_02 AC 20 ms
27,008 KB
testcase_03 AC 19 ms
26,880 KB
testcase_04 AC 19 ms
26,880 KB
testcase_05 AC 19 ms
26,880 KB
testcase_06 AC 19 ms
26,880 KB
testcase_07 AC 20 ms
26,880 KB
testcase_08 AC 19 ms
26,880 KB
testcase_09 AC 18 ms
26,880 KB
testcase_10 AC 20 ms
26,752 KB
testcase_11 AC 19 ms
26,880 KB
testcase_12 AC 19 ms
26,880 KB
testcase_13 AC 19 ms
26,880 KB
testcase_14 AC 19 ms
26,880 KB
testcase_15 AC 18 ms
26,880 KB
testcase_16 AC 20 ms
26,880 KB
testcase_17 AC 20 ms
26,880 KB
testcase_18 AC 18 ms
26,752 KB
testcase_19 AC 19 ms
26,880 KB
testcase_20 AC 21 ms
27,008 KB
testcase_21 AC 20 ms
27,008 KB
testcase_22 AC 19 ms
26,880 KB
testcase_23 AC 20 ms
27,008 KB
testcase_24 AC 19 ms
26,880 KB
testcase_25 AC 18 ms
26,880 KB
testcase_26 AC 97 ms
30,464 KB
testcase_27 AC 100 ms
30,592 KB
testcase_28 AC 90 ms
31,456 KB
testcase_29 AC 91 ms
31,104 KB
testcase_30 AC 88 ms
31,104 KB
testcase_31 AC 87 ms
31,104 KB
testcase_32 AC 89 ms
31,232 KB
testcase_33 AC 89 ms
30,848 KB
testcase_34 AC 93 ms
31,232 KB
testcase_35 AC 85 ms
31,360 KB
testcase_36 AC 57 ms
29,568 KB
testcase_37 AC 91 ms
31,104 KB
testcase_38 AC 84 ms
30,464 KB
testcase_39 AC 65 ms
29,568 KB
testcase_40 AC 74 ms
30,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <string>
#include <vector>
#define rep(i, n) for (int i = 0; i < (n); i++)
#define rrep(i, n) for (int i = (n)-1; i >= 0; i--)
using namespace std;
typedef long long int lli;
lli MOD = 1000000007;
struct edge {
    int f, t, num;
};
int edge_flag[10000005] = {};
bool use[10000005] = {};
vector<edge> e[1000005];
int main()
{
    int n, m;
    cin >> n >> m;
    int a, b;
    rep(i, m)
    {
        cin >> a >> b;
        e[b].push_back(edge{b, a, i});
        e[a].push_back(edge{a, b, i});
    }
    rep(i, n)
    {
        bool flag = false;
        for (auto j : e[i]) {
            // if (i == 9) {
            //     cout << edge_flag[j.num] << ' ';
            // }
            if (!edge_flag[j.num]) {
                flag = true;
            }
        }
        if (flag) {
            for (auto j : e[i]) {
                edge_flag[j.num]++;
            }
        }
        use[i] = flag;
    }
    // rep(i, m)
    // {
    //     cout << edge_flag[i] << endl;
    // }
    rrep(i, n)
    {
        if (use[i]) {
            bool flag = false;
            for (auto j : e[i]) {
                if (edge_flag[j.num] == 1) {
                    flag = true;
                }
            }
            if (!flag) {
                for (auto j : e[i]) {
                    edge_flag[j.num]--;
                }
            }
            use[i] = flag;
        }
    }
    int in = 0;
    bool flag = false;
    rrep(i, n)
    {
        if (!flag) {
            flag = use[i];
        }
        if (flag) {
            cout << use[i];
        }
    }
    cout << endl;
}
0