結果

問題 No.479 頂点は要らない
ユーザー t98slidert98slider
提出日時 2023-04-27 23:23:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 27 ms / 1,500 ms
コード長 644 bytes
コンパイル時間 1,519 ms
コンパイル使用メモリ 169,668 KB
実行使用メモリ 8,708 KB
最終ジャッジ日時 2023-08-10 18:51:18
合計ジャッジ時間 5,090 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,384 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 1 ms
4,376 KB
testcase_13 AC 1 ms
4,376 KB
testcase_14 AC 1 ms
4,376 KB
testcase_15 AC 1 ms
4,376 KB
testcase_16 AC 1 ms
4,376 KB
testcase_17 AC 2 ms
4,376 KB
testcase_18 AC 1 ms
4,376 KB
testcase_19 AC 1 ms
4,376 KB
testcase_20 AC 1 ms
4,380 KB
testcase_21 AC 2 ms
4,376 KB
testcase_22 AC 1 ms
4,376 KB
testcase_23 AC 1 ms
4,376 KB
testcase_24 AC 1 ms
4,376 KB
testcase_25 AC 1 ms
4,376 KB
testcase_26 AC 27 ms
7,440 KB
testcase_27 AC 27 ms
7,436 KB
testcase_28 AC 25 ms
8,708 KB
testcase_29 AC 22 ms
5,792 KB
testcase_30 AC 22 ms
5,804 KB
testcase_31 AC 23 ms
5,764 KB
testcase_32 AC 23 ms
5,732 KB
testcase_33 AC 20 ms
5,692 KB
testcase_34 AC 23 ms
5,668 KB
testcase_35 AC 22 ms
4,624 KB
testcase_36 AC 13 ms
4,380 KB
testcase_37 AC 25 ms
6,012 KB
testcase_38 AC 19 ms
5,060 KB
testcase_39 AC 15 ms
4,936 KB
testcase_40 AC 17 ms
5,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
	ios::sync_with_stdio(false);
    cin.tie(0);
    int n, m, u, v;
    cin >> n >> m;
    vector<vector<int>> g(n);
    for(int i = 0; i < m; i++){
        cin >> u >> v;
        if(u > v) swap(u, v);
        g[u].push_back(v);
    }
    string ans(n, '0');
    for(int i = n - 1; i >= 0; i--){
        for(auto &&u : g[i]){
            if(ans[u] == '0'){
                ans[i] = '1';
                break;
            }
        }
    }
    while(ans.size() > 1 && ans.back() == '0')ans.pop_back();
    reverse(ans.begin(), ans.end());
    cout << ans << '\n';
}
0