結果

問題 No.479 頂点は要らない
ユーザー olpheolphe
提出日時 2017-01-27 23:04:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 109 ms / 1,500 ms
コード長 960 bytes
コンパイル時間 1,023 ms
コンパイル使用メモリ 91,112 KB
実行使用メモリ 17,604 KB
最終ジャッジ日時 2024-06-06 05:10:38
合計ジャッジ時間 3,392 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,192 KB
testcase_01 AC 5 ms
8,164 KB
testcase_02 AC 3 ms
8,048 KB
testcase_03 AC 3 ms
8,084 KB
testcase_04 AC 3 ms
8,140 KB
testcase_05 AC 2 ms
8,196 KB
testcase_06 AC 4 ms
8,116 KB
testcase_07 AC 4 ms
8,244 KB
testcase_08 AC 4 ms
8,132 KB
testcase_09 AC 4 ms
8,144 KB
testcase_10 AC 4 ms
8,108 KB
testcase_11 AC 4 ms
8,188 KB
testcase_12 AC 3 ms
7,996 KB
testcase_13 AC 3 ms
8,188 KB
testcase_14 AC 3 ms
8,188 KB
testcase_15 AC 3 ms
8,164 KB
testcase_16 AC 3 ms
8,040 KB
testcase_17 AC 3 ms
8,132 KB
testcase_18 AC 4 ms
8,020 KB
testcase_19 AC 4 ms
8,264 KB
testcase_20 AC 4 ms
8,228 KB
testcase_21 AC 4 ms
8,240 KB
testcase_22 AC 4 ms
8,220 KB
testcase_23 AC 5 ms
8,204 KB
testcase_24 AC 4 ms
8,144 KB
testcase_25 AC 4 ms
8,284 KB
testcase_26 AC 95 ms
17,572 KB
testcase_27 AC 92 ms
17,560 KB
testcase_28 AC 94 ms
17,604 KB
testcase_29 AC 87 ms
17,536 KB
testcase_30 AC 86 ms
17,544 KB
testcase_31 AC 92 ms
17,552 KB
testcase_32 AC 86 ms
17,584 KB
testcase_33 AC 97 ms
16,192 KB
testcase_34 AC 109 ms
16,912 KB
testcase_35 AC 109 ms
17,200 KB
testcase_36 AC 74 ms
14,244 KB
testcase_37 AC 94 ms
16,400 KB
testcase_38 AC 82 ms
15,420 KB
testcase_39 AC 52 ms
13,212 KB
testcase_40 AC 61 ms
13,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "iostream"
#include "climits"
#include "list"
#include "queue"
#include "set"
#include "functional"
#include "algorithm"
#include "math.h"
#include "utility"

using namespace std;
const long long int MOD = 1000000007;


long long int N, M;
int s, e;
set<int>edge[100000];
bool flag[100000] = {};
int big=0;
set<int>::iterator itr;

int main() {
	cin >> N >> M;
	for (int i = 0; i < M; i++) {
		cin >> s >> e;
		edge[s].insert(e);
		edge[e].insert(s);
	}
	for (int i = N; i >= 0; i--) {
		if (!edge[i].empty()) {
			for (auto j = edge[i].begin(); j != edge[i].end(); ++j) {
				flag[*j] = true;
				while (!edge[*j].empty()) {
					itr = edge[*j].begin();
					if(*itr!=i)	edge[*itr].erase(*j);
					edge[*j].erase(*itr);

				}
			}
			edge[i].clear();
		}
	}
	for (int i = N; i >= 0; i--) {
		if (flag[i]) {
			big = i;
			break;
		}
	}
	for (int i = big; i >= 0; i--) {
		if (flag[i])cout << "1";
		else cout << "0";
	}
	cout << endl;
	return 0;
}

0