[BZOJ1574] [Usaco2009 Jan]地震损坏Damage(贪心 + dfs)

Posted 蒟蒻zht的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[BZOJ1574] [Usaco2009 Jan]地震损坏Damage(贪心 + dfs)相关的知识,希望对你有一定的参考价值。

传送门

 

告诉你一些点不能到达1,由于是双向边,也就是1不能到达那些点

那么从1开始dfs,如果当前点能到达不能到达的点,那么当前点就是损坏的。

 

#include <cstdio>
#include <cstring>
#include <iostream>
#define N 100001

int n, m, p, cnt, tot;
int head[N], to[N << 1], next[N << 1];
bool vis[N], flag[N];

inline int read()
{
	int x = 0, f = 1;
	char ch = getchar();
	for(; !isdigit(ch); ch = getchar()) if(ch == ‘-‘) f = -1;
	for(; isdigit(ch); ch = getchar()) x = (x << 1) + (x << 3) + ch - ‘0‘;
	return x * f;
}

inline void add(int x, int y)
{
	to[cnt] = y;
	next[cnt] = head[x];
	head[x] = cnt++;
}

inline void dfs(int u)
{
	int i, v;
	vis[u] = 1;
	for(i = head[u]; i ^ -1; i = next[i])
	{
		v = to[i];
		if(flag[v]) return;
	}
	for(i = head[u]; i ^ -1; i = next[i])
	{
		v = to[i];
		if(!vis[v]) dfs(v);
	}
	tot++;
}

int main()
{
	int i, x, y;
	n = read();
	m = read();
	p = read();
	memset(head, -1, sizeof(head));
	for(i = 1; i <= m; i++)
	{
		x = read();
		y = read();
		add(x, y);
		add(y, x);
	}
	for(i = 1; i <= p; i++)
	{
		x = read();
		flag[x] = 1;
	}
	dfs(1);
	printf("%d\n", n - tot);
	return 0;
}

  

以上是关于[BZOJ1574] [Usaco2009 Jan]地震损坏Damage(贪心 + dfs)的主要内容,如果未能解决你的问题,请参考以下文章

[bzoj3396] [Usaco2009 Jan]Total flow 水流

bzoj 1575: [Usaco2009 Jan]气象牛Baricdp

BZOJ3393 [Usaco2009 Jan]Laserphones 激光通讯 BFS

bzoj 3396: [Usaco2009 Jan]Total flow 水流最大流

[BZOJ1575] [Usaco2009 Jan]气象牛Baric(DP)

BZOJ1576 [Usaco2009 Jan]安全路经Travel