結果

問題 No.479 頂点は要らない
ユーザー けーけー
提出日時 2017-04-10 21:58:27
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 94 ms / 1,500 ms
コード長 554 bytes
コンパイル時間 1,480 ms
コンパイル使用メモリ 176,748 KB
実行使用メモリ 27,824 KB
最終ジャッジ日時 2024-07-18 05:45:48
合計ジャッジ時間 4,400 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 88 ms
26,360 KB
testcase_27 AC 94 ms
26,500 KB
testcase_28 AC 84 ms
27,824 KB
testcase_29 AC 74 ms
17,920 KB
testcase_30 AC 73 ms
18,048 KB
testcase_31 AC 75 ms
18,048 KB
testcase_32 AC 74 ms
18,160 KB
testcase_33 AC 81 ms
17,720 KB
testcase_34 AC 85 ms
18,304 KB
testcase_35 AC 82 ms
13,184 KB
testcase_36 AC 53 ms
9,344 KB
testcase_37 AC 84 ms
19,192 KB
testcase_38 AC 75 ms
15,872 KB
testcase_39 AC 47 ms
13,952 KB
testcase_40 AC 59 ms
17,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
const int inf=8938103643641919514ll;
const int mod=1000000007ll;
const int dd[]={0,-1,0,1,0};
using namespace std;
int a,b,c,d;
struct Node{
	unordered_set<int> e;
};
Node *p;
bitset<114514> q;
signed main(){
	int i,j,k;
	cin>>a>>b;
	p=new Node[a];
	for(i=0;i<b;i++){
		int u,v;
		cin>>u>>v;
		p[u].e.insert(v);
		p[v].e.insert(u);
	}
	string ans;
	for(i=a-1;i>=0;i--){
		if(!q[i]){
			for(auto x:p[i].e)
				q.set(x);
		}
		ans.push_back(q[i]?'1':'0');
	}
	ans=ans.substr(ans.find('1'));
	cout<<ans<<endl;
}
0