POJ 3435 Sudoku Checker,poj3435

來源:互聯網
上載者:User

POJ 3435 Sudoku Checker,poj3435

Description

The puzzle game of Sudoku is played on a board of N2 × N2 cells. The cells are grouped in N × N squares of N × N cells each. Each cell is either empty or contains a number between 1 and N2.

The sudoku position is correct when numbers in each row, each column and each square are different. The goal of the game is, starting from some correct position, fill all empty cells so that the final position is still correct.

This game is fairly popular in the Internet, and there are many sites which allow visitors to solve puzzles online. Such sites always have a subroutine to determine a correctness of a given position.

You are to write such a routin.

Input

Input file contains integer N, followed by N4 integers — sudoku position. Empty cells are denoted by zeroes.

Constraints

1 ≤ N ≤ 10.

Output

Output file must contain a single string 'CORRECT' or 'INCORRECT'.
 

Sample Input

Sample input 120 0 0 00 0 0 00 0 2 00 0 0 1Sample input 222 1 3 03 2 4 01 3 2 40 0 0 1

Sample Output

Sample output 1CORRECTSample output 2INCORRECT

臥槽,數獨,判斷行,列和小方格裡的數不重複。但只判斷目前狀態。

#include<iostream>#include<cstdio>#include<cstring>#include<algorithm>#include<limits.h>using namespace std;const int maxn=110;int a[maxn][maxn],n;int x[maxn][15];int y[maxn][15];int s[maxn][15];int main(){    while(~scanf("%d",&n))    {        memset(x,0,sizeof(x));        memset(y,0,sizeof(y));        memset(s,0,sizeof(s));        bool flag=true;        for(int i=0;i<n*n;i++)        {            for(int j=0;j<n*n;j++)            {                scanf("%d",&a[i][j]);                if(a[i][j]>0&&flag)                {                    if(!x[i][a[i][j]])//判斷行                       x[i][a[i][j]]=1;                    else                       flag=false;                    if(!y[j][a[i][j]])//判斷列                       y[j][a[i][j]]=1;                    else                        flag=false;                    if(!s[i/n*n+j/n+1][a[i][j]])//判斷小方格                        s[i/n*n+j/n+1][a[i][j]]=1;                    else                        flag=false;                }            }        }        if(flag)            printf("CORRECT\n");        else            printf("INCORRECT\n");    }    return 0;}






聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.