結果

問題 No.479 頂点は要らない
ユーザー kurenai3110kurenai3110
提出日時 2017-04-11 18:27:24
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 71 ms / 1,500 ms
コード長 860 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 69,484 KB
実行使用メモリ 9,716 KB
最終ジャッジ日時 2024-07-18 09:04:39
合計ジャッジ時間 2,565 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 71 ms
9,344 KB
testcase_27 AC 71 ms
9,216 KB
testcase_28 AC 60 ms
9,716 KB
testcase_29 AC 59 ms
6,912 KB
testcase_30 AC 59 ms
6,784 KB
testcase_31 AC 60 ms
6,784 KB
testcase_32 AC 59 ms
6,784 KB
testcase_33 AC 54 ms
6,944 KB
testcase_34 AC 58 ms
7,040 KB
testcase_35 AC 59 ms
5,632 KB
testcase_36 AC 34 ms
5,376 KB
testcase_37 AC 58 ms
7,296 KB
testcase_38 AC 49 ms
6,656 KB
testcase_39 AC 35 ms
6,016 KB
testcase_40 AC 41 ms
6,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <set>
using namespace std;

int main()
{
	int n, m; cin >> n >> m;

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

	vector<int>cnt(m);
	int size = 0;
	int last = 0;
	for (int i = 0; i < n; i++) {
		for (int j = 0; j < V[i].size();j++) {
			if (cnt[V[i][j]] == 0)size++;
			cnt[V[i][j]]++;
		}

		if (size == m) {
			last = i;
			break;
		}
	}

	string ans = "";
	for (int i = last; i >= 0; i--) {
		bool iranai = true;
		for (int j = 0; j < V[i].size(); j++) {
			if (cnt[V[i][j]] == 1) {
				iranai = false;
				break;
			}
		}

		if (iranai) {
			for (int j = 0; j < V[i].size(); j++)cnt[V[i][j]]--;
			ans += '0';
		}
		else {
			ans += '1';
		}
	}

	cout << ans << endl;

    return 0;
}
0