고전 c 프로그램(0032)-미궁 타당성 분석
/**************************************************************************************
* Function : test
* Create Date : 2014/07/11
* Author : NTSK13
* Email : [email protected]
* Copyright : , 。
*
* Version : V0.1
***************************************************************************************
c (0032)
: 10*10 ,
1, , 0.
0 ,1
:
1 0 0 1 0 1 0 0 0 0
1 1 0 1 0 1 0 0 0 0
0 1 1 1 1 1 1 0 0 0
1 0 0 0 0 1 0 0 0 0
1 1 1 1 1 1 1 0 0 0
0 0 1 0 0 0 0 0 0 0
1 0 1 0 1 1 1 1 1 1
1 1 1 0 1 0 0 1 0 0
0 0 1 1 1 0 1 1 1 0
0 0 1 0 1 1 0 0 1 1
**************************************************************************************/
#include<stdio.h>
#define M 10
typedef struct{
int x;
int y;
}Pos;
Pos start,end;
int data[M][M];
/***********************************************************/
int offset[4][2]={-1,0,0,1,1,0,0,-1};
int mark[M][M];
int check(Pos start,Pos end);
/***********************************************************/
int main(void)
{
int test_case;
int T=0,th=0;
/*
The freopen function below opens input.txt file in read only mode, and afterward,
the program will read from input.txt file instead of standard(keyboard) input.
To test your program, you may save input data in input.txt file,
and use freopen function to read from the file when using scanf function.
You may remove the comment symbols(//) in the below statement and use it.
But before submission, you must remove the freopen function or rewrite comment symbols(//).
*/
freopen("input.txt", "r", stdin);
/*
If you remove the statement below, your program's output may not be rocorded
when your program is terminated after the time limit.
For safety, please use setbuf(stdout, NULL); statement.
*/
setbuf(stdout, NULL);
scanf("%d", &T);
for(test_case = 0; test_case < T; test_case++)
{
int ret=0,i=0,j=0;
/**********************************
* Implement your algorithm here. */
scanf("%d", &th);
for(i=0;i<M;i++)
for(j=0;j<M;j++)
{
scanf("%d",&data[i][j]);
mark[i][j]=0;
}
start.x=0;
start.y=0;
end.x=9;
end.y=9;
ret=check(start,end);
/**********************************/
// Print the answer to standard output(screen).
printf("#%d %d
",th,ret);
fflush(stdout);// Eclipse printf() bug
}
return (0);//Your program should return 0 on normal termination.
}
int check(Pos start,Pos end)
{
int x=0,y=0,tx=0,ty=0,k=0,ret=0;
x=start.x;
y=start.y;
if(x==end.x && y==end.y)
return 1;
mark[x][y]=1;
for(k=0;k<4;k++)
{
tx=x+offset[k][0];
ty=y+offset[k][1];
if( tx>=0 && tx<M &&
ty>=0 && ty<M &&
mark[tx][ty]==0
)
{
if(data[tx][ty]==1)
{
start.x=tx;
start.y=ty;
ret=check(start,end);
if(ret==1)
return ret;
}
}
}
return ret;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.