結果

問題 No.479 頂点は要らない
ユーザー femtofemto
提出日時 2017-01-27 23:12:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 37 ms / 1,500 ms
コード長 729 bytes
コンパイル時間 1,824 ms
コンパイル使用メモリ 171,984 KB
実行使用メモリ 9,856 KB
最終ジャッジ日時 2024-06-06 05:17:16
合計ジャッジ時間 3,295 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,888 KB
testcase_01 AC 4 ms
5,760 KB
testcase_02 AC 3 ms
5,760 KB
testcase_03 AC 3 ms
5,760 KB
testcase_04 AC 3 ms
5,888 KB
testcase_05 AC 3 ms
5,760 KB
testcase_06 AC 3 ms
5,888 KB
testcase_07 AC 3 ms
5,888 KB
testcase_08 AC 3 ms
5,888 KB
testcase_09 AC 3 ms
5,760 KB
testcase_10 AC 4 ms
5,888 KB
testcase_11 AC 2 ms
5,888 KB
testcase_12 AC 3 ms
5,760 KB
testcase_13 AC 3 ms
5,888 KB
testcase_14 AC 3 ms
5,760 KB
testcase_15 AC 3 ms
5,760 KB
testcase_16 AC 3 ms
5,760 KB
testcase_17 AC 3 ms
5,760 KB
testcase_18 AC 3 ms
5,888 KB
testcase_19 AC 4 ms
6,016 KB
testcase_20 AC 3 ms
5,888 KB
testcase_21 AC 3 ms
5,760 KB
testcase_22 AC 3 ms
5,888 KB
testcase_23 AC 3 ms
5,888 KB
testcase_24 AC 4 ms
5,888 KB
testcase_25 AC 3 ms
5,760 KB
testcase_26 AC 36 ms
9,856 KB
testcase_27 AC 37 ms
9,856 KB
testcase_28 AC 28 ms
9,612 KB
testcase_29 AC 31 ms
8,320 KB
testcase_30 AC 30 ms
8,284 KB
testcase_31 AC 29 ms
8,320 KB
testcase_32 AC 29 ms
8,320 KB
testcase_33 AC 30 ms
8,448 KB
testcase_34 AC 32 ms
8,704 KB
testcase_35 AC 29 ms
7,936 KB
testcase_36 AC 16 ms
7,040 KB
testcase_37 AC 31 ms
8,704 KB
testcase_38 AC 27 ms
8,064 KB
testcase_39 AC 20 ms
7,680 KB
testcase_40 AC 23 ms
8,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int check[100000];
int del[100000];
vector<int> G[100000];

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);

	int n, m;
	cin >> n >> m;
	for(int i = 0; i < m; i++) {
		int a, b;
		cin >> a >> b;
		G[a].push_back(i);
		G[b].push_back(i);
	}

	for(int i = n - 1; i >= 0; i--) {
		bool ok = true;
		for(auto id : G[i]) {
			if(check[id]) {
				ok = false;
				break;
			}
		}
		if(ok) {
			for(auto id : G[i]) {
				check[id] = 1;
			}
			del[i] = 1;
		}
	}

	string s;
	for(int i = 0; i < n; i++) {
		if(del[i]) s += '0';
		else s += '1';
	}
	while(s.back() == '0') s.pop_back();
	reverse(s.begin(), s.end());

	if(s == "") s = "0";
	cout << s << endl;
}
0