| Time Limit: 1000MS | Memory Limit: 65536K | |
| Total Submissions: 2487 | Accepted: 1464 |
Description
An equidivision of an n × n square array of cells is a partition of the n2 cells in the array in exactly n sets, each one with n contiguous cells. Two cells are contiguous when they have a common side.
A good equidivision is composed of contiguous regions. The figures show a good and a wrong equidivision for a 5 × 5 square:
Note that in the second example the cells labeled with 4 describe three non-contiguous regions and cells labeled with 5 describe two non-contiguous regions. You must write a program that evaluates if an equidivision of the cells in a square array is good or not.
Input
It is understood that a cell in an n × n square array is denoted by a pair (i, j), with 1 ≤ i, j ≤ n. The input file contains several test cases. Each test case begins with a line indicating n, 0 < n < 100, the side of the square array to be partitioned. Next, there are n − 1 lines, each one corresponding to one partition of the cells of the square, with some non-negative integer numbers. Consecutive integers in a line are separated with a single blank character. A line of the form
a1a2a3a4…
means that cells denoted with the pairs (a1, a2), (a3, a4), … belong to one of the areas in the partition. The last area in the partition is defined by those cells not mentioned in the n − 1 given lines. If a case begins with n = 0 it means that there are no more cases to analyze.
Output
For each test case good must be printed if the equidivision is good, in other case, wrong must be printed. The answers for the different cases must preserve the order of the input.
Sample Input
2 1 2 2 1 5 1 1 1 2 1 3 3 2 2 2 2 1 4 2 4 1 5 1 3 1 4 5 5 2 5 3 5 5 5 4 2 5 3 4 3 5 4 3 4 4 5 1 1 1 2 1 3 3 2 2 2 2 1 3 1 4 1 5 1 4 2 4 5 5 2 5 3 5 5 5 4 2 4 1 4 3 5 4 3 4 4 0
Sample Output
wrong good wrong
Source
#include <stdio.h>
#include <string.h>
int move[4][2]={1,0,-1,0,0,1,0,-1};
int map[100][100],vis[100][100];
int n;
bool judge(int x,int y)
{
if(x<=0||y<=0||x>n||y>n)
return true;
return false;
}
void dfs(int x,int y,int &count)
{
vis[x][y]=1;
count++;
for(int i=0;i<4;i++)
{
int xx=x+move[i][0];
int yy=y+move[i][1];
if(!judge(xx,yy)&&map[xx][yy]==map[x][y]&&!vis[xx][yy])
dfs(xx,yy,count);
}
}
bool solve()
{
int count;
for(int i=1;i<=n;i++)
for(int j=1;j<=n;j++)
{
if(!vis[i][j])
{
count=0;
dfs(i,j,count);
if(count!=n)
return false;
}
}
return true;
}
int main()
{
int x,y;
while(scanf("%d",&n),n!=0)
{
memset(map,0,sizeof(map));
memset(vis,0,sizeof(vis));
for(int i=1;i<n;i++)
for(int j=0;j<n;j++)
{
scanf("%d%d",&x,&y);
map[x][y]=i;
}
if(solve())
printf("good\n");
else
printf("wrong\n");
}
return 0;
}
本文深入探讨了深度学习和人工智能领域的最新进展,包括机器学习算法、神经网络架构、自然语言处理、计算机视觉等核心主题。文章不仅概述了理论基础,还提供了实际应用案例,旨在帮助读者理解如何将这些技术应用于解决现实世界的问题。
386

被折叠的 条评论
为什么被折叠?



