poj 3194 Equidivisions

本文深入探讨了深度学习和人工智能领域的最新进展,包括机器学习算法、神经网络架构、自然语言处理、计算机视觉等核心主题。文章不仅概述了理论基础,还提供了实际应用案例,旨在帮助读者理解如何将这些技术应用于解决现实世界的问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Equidivisions
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 (ij), with 1 ≤ ij ≤ 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 (a1a2), (a3a4), … 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


最近啊。。。唉。。。dfs入门ing。。。。花了好几天了。。。找喵要模板。。。那货就是不给。。所以还是YY吧。

#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;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值