結果

問題 No.479 頂点は要らない
ユーザー 夜
提出日時 2021-02-15 21:32:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 88 ms / 1,500 ms
コード長 784 bytes
コンパイル時間 1,022 ms
コンパイル使用メモリ 97,464 KB
実行使用メモリ 9,208 KB
最終ジャッジ日時 2024-07-23 13:13:20
合計ジャッジ時間 4,088 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 4 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 4 ms
6,944 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 4 ms
6,944 KB
testcase_16 AC 3 ms
6,944 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 4 ms
6,948 KB
testcase_20 AC 4 ms
6,944 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 5 ms
6,944 KB
testcase_23 AC 5 ms
6,940 KB
testcase_24 AC 4 ms
6,944 KB
testcase_25 AC 4 ms
6,944 KB
testcase_26 AC 86 ms
8,960 KB
testcase_27 AC 88 ms
8,936 KB
testcase_28 AC 72 ms
9,208 KB
testcase_29 AC 71 ms
7,424 KB
testcase_30 AC 71 ms
7,424 KB
testcase_31 AC 71 ms
7,552 KB
testcase_32 AC 71 ms
7,424 KB
testcase_33 AC 70 ms
7,680 KB
testcase_34 AC 75 ms
7,936 KB
testcase_35 AC 69 ms
7,168 KB
testcase_36 AC 39 ms
6,940 KB
testcase_37 AC 72 ms
7,780 KB
testcase_38 AC 62 ms
7,552 KB
testcase_39 AC 46 ms
7,040 KB
testcase_40 AC 55 ms
7,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <cmath>
#include <stdio.h>
#include <queue>
#include <deque>
#include <cstdio>
#include <set>
#include <map>
#include <bitset>
#include <stack>
#include <cctype>
using namespace std;
bool bo[100010] = { false };
vector<vector<int>> vec(100010);
int main() {
	int n, m;
	cin >> n >> m;
	for (int i = 0; i < m; i++) {
		int a, b;
		cin >> a >> b;
		vec[a].emplace_back(b);
		vec[b].emplace_back(a);
	}
	for (int i = n - 1; i >= 0; i--) {
		if (!bo[i]) {
			for (int j = 0; j < vec[i].size(); j++) {
				bo[vec[i][j]] = true;
			}
		}
	}
	bool bo1 = false;
	for (int i = n - 1; i >= 0; i--) {
		if (bo[i]) {
			bo1 = true;
		}
		if (bo1) {
			cout << bo[i];
		}
	}
	cout << endl;
}
0