結果

問題 No.479 頂点は要らない
ユーザー chocoruskchocorusk
提出日時 2018-09-22 11:48:42
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 145 ms / 1,500 ms
コード長 978 bytes
コンパイル時間 801 ms
コンパイル使用メモリ 90,356 KB
実行使用メモリ 14,032 KB
最終ジャッジ日時 2024-07-18 08:54:21
合計ジャッジ時間 3,605 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,812 KB
testcase_01 AC 4 ms
6,944 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 4 ms
6,944 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 4 ms
6,944 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 4 ms
6,944 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 4 ms
6,940 KB
testcase_13 AC 4 ms
6,940 KB
testcase_14 AC 4 ms
6,944 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 4 ms
6,944 KB
testcase_17 AC 4 ms
6,944 KB
testcase_18 AC 4 ms
6,940 KB
testcase_19 AC 5 ms
6,940 KB
testcase_20 AC 5 ms
6,940 KB
testcase_21 AC 4 ms
6,944 KB
testcase_22 AC 5 ms
6,944 KB
testcase_23 AC 4 ms
6,944 KB
testcase_24 AC 5 ms
6,944 KB
testcase_25 AC 5 ms
6,940 KB
testcase_26 AC 145 ms
13,696 KB
testcase_27 AC 144 ms
13,952 KB
testcase_28 AC 98 ms
14,032 KB
testcase_29 AC 88 ms
10,240 KB
testcase_30 AC 86 ms
10,112 KB
testcase_31 AC 87 ms
10,240 KB
testcase_32 AC 88 ms
10,240 KB
testcase_33 AC 95 ms
10,624 KB
testcase_34 AC 105 ms
10,880 KB
testcase_35 AC 77 ms
8,704 KB
testcase_36 AC 42 ms
7,168 KB
testcase_37 AC 104 ms
11,264 KB
testcase_38 AC 84 ms
9,856 KB
testcase_39 AC 65 ms
9,472 KB
testcase_40 AC 85 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
int main()
{
	int n, m;
	cin>>n>>m;
	int b[100001];
	fill(b, b+n, -1);
	set<int> st;
	vector<int> g[100000];
	for(int i=0; i<n; i++) st.insert(i);
	for(int i=0; i<m; i++){
		int a, b;
		cin>>a>>b;
		g[a].push_back(b);
		g[b].push_back(a);
	}
	while(!st.empty()){
		auto itr=st.end(); itr--;
		int mx=*itr;
		b[mx]=0;
		st.erase(itr);
		vector<int> v;
		for(auto x:g[mx]){
		    if(b[x]>0) continue;
		    v.push_back(x);
		    b[x]=1;
		    st.erase(x);
		}
		for(auto x:v){
			for(auto y:g[x]){
				if(b[y]<0) b[y]=0;
			}
		}
	}
	int i=n-1;
	for(; i>=0; i--){
		if(b[i]==1) break;
	}
	string ans;
	for(; i>=0; i--){
		if(b[i]==1) ans+='1';
		else ans+='0';
	}
	cout<<ans<<endl;
	return 0;
}
0