結果

問題 No.479 頂点は要らない
ユーザー startcppstartcpp
提出日時 2017-01-29 17:07:49
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,216 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 63,132 KB
実行使用メモリ 10,104 KB
最終ジャッジ日時 2024-06-06 09:02:38
合計ジャッジ時間 2,948 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,784 KB
testcase_01 AC 3 ms
6,656 KB
testcase_02 AC 3 ms
6,784 KB
testcase_03 AC 3 ms
6,912 KB
testcase_04 AC 4 ms
6,528 KB
testcase_05 AC 4 ms
6,784 KB
testcase_06 AC 4 ms
6,912 KB
testcase_07 AC 4 ms
6,528 KB
testcase_08 AC 3 ms
6,656 KB
testcase_09 AC 4 ms
6,784 KB
testcase_10 AC 3 ms
6,784 KB
testcase_11 AC 3 ms
6,784 KB
testcase_12 AC 3 ms
6,656 KB
testcase_13 AC 4 ms
6,784 KB
testcase_14 AC 3 ms
6,528 KB
testcase_15 AC 3 ms
6,656 KB
testcase_16 WA -
testcase_17 AC 3 ms
6,656 KB
testcase_18 AC 4 ms
6,784 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 4 ms
6,912 KB
testcase_22 AC 4 ms
6,912 KB
testcase_23 AC 4 ms
6,912 KB
testcase_24 AC 4 ms
6,912 KB
testcase_25 WA -
testcase_26 AC 89 ms
10,052 KB
testcase_27 AC 91 ms
10,048 KB
testcase_28 AC 74 ms
10,104 KB
testcase_29 AC 79 ms
8,772 KB
testcase_30 AC 76 ms
8,576 KB
testcase_31 AC 76 ms
8,448 KB
testcase_32 AC 75 ms
8,680 KB
testcase_33 AC 69 ms
8,832 KB
testcase_34 AC 80 ms
8,960 KB
testcase_35 AC 75 ms
8,192 KB
testcase_36 AC 44 ms
7,680 KB
testcase_37 AC 75 ms
8,960 KB
testcase_38 AC 65 ms
8,704 KB
testcase_39 AC 48 ms
8,384 KB
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const int depth = 17;
const int INF = 114514;
class Segtree {
	int data[1 << (depth + 1)];
public:
	Segtree() {
		for (int i = 0; i < (1 << (depth + 1)); i++) { data[i] = -INF; }
	}
	void update(int pos, int x) {
		pos += (1 << depth) - 1;
		data[pos] = x;
		while (pos > 0) {
			pos = (pos - 1) / 2;
			data[pos] = max(data[pos * 2 + 1], data[pos * 2 + 2]);
		}
	}
	int getMax() {
		return data[0];
	}
	int getNum(int pos) {
		return data[pos + (1 << depth) - 1];
	}
};

Segtree seg;
vector<int> eid[100000];	//eid[i] = 頂点iにくっついている辺の番号

int main() {
	int n, m, i, a, b;
	
	cin >> n >> m;
	for (i = 0; i < m; i++) {
		cin >> a >> b;
		seg.update(i, a);	//辺iを消すにはa番以上の頂点を消す必要がある
		eid[a].push_back(i);
		eid[b].push_back(i);
	}
	
	static bool used[100000] = {false};
	while (true) {
		int id = seg.getMax();
		if (id < 0) break;
		//頂点idを消す
		for (i = 0; i < eid[id].size(); i++) {
			seg.update(eid[id][i], -INF);
		}
		used[id] = true;
	}
	
	for (i = m - 1; i >= 0; i--) if (used[i]) break;
	for (; i >= 0; i--) cout << used[i];
	cout << endl;
	return 0;
}
0