牛为什么过马路III--Why Did the Cow Cross the Road III-BFS

题目描述

Why did the cow cross the road? Well, one reason is that Farmer John's farm simply has a lot of roads, making it impossible for his cows to travel around without crossing many of them.

为什么牛过马路? 其中一个简单的原因就是农民约翰的农场有很多道路,使得他的母牛不得不穿越许多道路。

FJ's farm is arranged as an N imes NN×N square grid of fields (2 leq N leq 1002≤N≤100), Certain pairs of adjacent fields (e.g., north-south or east-west) are separated by roads, and a tall fence runs around the external perimeter of the entire grid, preventing cows from leaving the farm. Cows can move freely from any field to any other adjacent field (north, east, south, or west), although they prefer not to cross roads unless absolutely necessary.

FJ的农场在 N imes NN×N的网格中( 2le Nle 1002≤N≤100),某些相邻的区域(例如,南北或东西)由道路分隔,高大的围栏围绕着整个格栅的外围,防止牛离开农场。 牛可以从任何场地自由移动到任何其他相邻的区域(北,东,南或西),不过除非不得已,她们并不愿意穿越道路。

There are KK cows (1 leq K leq 100, K leq N^21≤K≤100,K≤N
2
) on FJ's farm, each located in a different field. A pair of cows is said to be "distant" if, in order for one cow to visit the other, it is necessary to cross at least one road. Please help FJ count the number of distant pairs of cows.

在FJ的农场有 KK 头牛(1le Kle 100,Kle N^{2}1≤K≤100,K≤N
2
),每个位于不同的区域。 定义一对牛是“遥远的”,是指让一头牛访问另一头牛时,必须至少穿过一条路。 请帮助FJ计算有多少对牛是“遥远的”。

输入格式

The first line of input contains NN, KK, and RR. The next RR lines describe RR roads that exist between pairs of adjacent fields. Each line is of the form rr cc r'r

c'c

(integers in the range 1 ldots N1…N), indicating a road between the field in (row rr, column cc) and the adjacent field in (row r'r

, column c'c

). The final KK lines indicate the locations of the KK cows, each specified in terms of a row and column.

第一行输入包含 NN, KK和 RR。 接下来的 RR 行描述存在于相邻区域对之间的 RR 条路。 每行的格式为 rr ; cc ; r'r

; c'c

(都是在 1...N1...N中的整数),表示在两个相邻的区域(第rr行第cc列,和第r​'r​

​​ 行第c​'c​

​​ 列)之间的路。 最终的KK行表示 KK 头牛的位置,也用行列来表示。

输出格式

Print the number of pairs of cows that are distant.

输出遥远的牛数量对。

输入输出样例

输入 #1 复制
3 3 3
2 2 2 3
3 3 3 2
3 3 2 3
3 3
2 2
2 3
输出 #1 复制
2


思路

  • bfs,标记每一堵墙

代码

#include <iostream>
#include <cstdio>
#include <queue>
#include <cstring>
using namespace std;
const int maxn=103;
int n,k,r,fx[4][2]={{0,1},{0,-1},{-1,0},{1,0}},num,ans;
bool cow[maxn][maxn],tag[maxn][maxn],flag[maxn][maxn][4];//0up 1down 2left 3right
struct fdfdfd{int x,y;}e[maxn<<1];
void bfs(int stax,int stay)
{
	num=0; tag[stax][stay]=1;
	queue<fdfdfd> q; q.push((fdfdfd){stax,stay});
	while(!q.empty())
	{
		int tx=q.front().x,ty=q.front().y;
		if(cow[tx][ty]) ++num;
		for(int i=0;i<4;++i)
		{
			int nowx=tx+fx[i][0],nowy=ty+fx[i][1];
			if(nowx>=1&&nowx<=n&&nowy>=1&&nowy<=n&&!flag[tx][ty][i]&&!tag[nowx][nowy])
				q.push((fdfdfd){nowx,nowy}),tag[nowx][nowy]=1;
		}
		q.pop();
	}
}
int main()
{
	scanf("%d%d%d",&n,&k,&r);
	for(int i=1,t1,t2,t3,t4;i<=r;++i)
	{
		scanf("%d%d%d%d",&t1,&t2,&t3,&t4);
		if(t1==t3)
		{
			if(t2<t4) swap(t2,t4);
			flag[t1][t2][1]=flag[t3][t4][0]=1;
		}
		else
		{
			if(t1>t3) swap(t1,t3);
			flag[t1][t2][3]=flag[t3][t4][2]=1;
		}
	}
	for(int i=1;i<=k;++i) scanf("%d%d",&e[i].x,&e[i].y),cow[e[i].x][e[i].y]=1;
	for(int i=1;i<=k;++i)
	{
		memset(tag,0,sizeof(tag));
		bfs(e[i].x,e[i].y);
		ans+=k-num;
	}
	cout<<ans/2<<"
";
	return 0;
}
原文地址:https://www.cnblogs.com/wuwendongxi/p/13964596.html