結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,812 KB
testcase_01 AC 4 ms
6,940 KB
testcase_02 AC 4 ms
6,944 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 4 ms
6,944 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 4 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,940 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 AC 4 ms
6,940 KB
testcase_15 AC 4 ms
6,944 KB
testcase_16 AC 5 ms
6,940 KB
testcase_17 AC 4 ms
6,944 KB
testcase_18 AC 4 ms
6,944 KB
testcase_19 AC 4 ms
6,944 KB
testcase_20 AC 5 ms
6,944 KB
testcase_21 AC 4 ms
6,944 KB
testcase_22 AC 5 ms
6,940 KB
testcase_23 AC 5 ms
6,940 KB
testcase_24 AC 4 ms
6,940 KB
testcase_25 AC 5 ms
6,940 KB
testcase_26 AC 144 ms
13,824 KB
testcase_27 AC 140 ms
13,824 KB
testcase_28 AC 97 ms
14,152 KB
testcase_29 AC 86 ms
10,240 KB
testcase_30 AC 90 ms
10,112 KB
testcase_31 AC 84 ms
10,240 KB
testcase_32 AC 87 ms
10,368 KB
testcase_33 AC 92 ms
10,752 KB
testcase_34 AC 98 ms
10,752 KB
testcase_35 AC 74 ms
8,448 KB
testcase_36 AC 42 ms
7,296 KB
testcase_37 AC 105 ms
11,136 KB
testcase_38 AC 83 ms
9,984 KB
testcase_39 AC 68 ms
9,472 KB
testcase_40 AC 91 ms
11,008 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