Submission #8996341


Source Code Expand

#include <stdio.h>

int h, w;
char p[502*502];

void f(char* q)
{
	if (*q=='#')
		return;
	if (*q=='g') {
		printf("Yes");
		exit(0);
	}
	*q = '#';
	f(q-1);
	f(q+1);
	f(q-w);
	f(q+w);
}

int main()
{
	scanf("%d%d",&h,&w);
	h += 2;
	w += 2;
	char* q = p;
	memset(q,'#',w);
	q += w;
	for ( int y = 0 ; y < h-2 ; y++ ) {
		*q = '#';
		scanf( "%s", q+1 );
		*(q+w-1) = '#';
		q += w;
	}
	memset(q,'#',w);
	f(strchr(p,'s'));
	printf("No");
}

Submission Info

Submission Time
Task A - 深さ優先探索
User makox
Language C (GCC 5.4.1)
Score 100
Code Size 475 Byte
Status AC
Exec Time 5 ms
Memory 2688 KB

Compile Error

./Main.c: In function ‘f’:
./Main.c:12:3: warning: implicit declaration of function ‘exit’ [-Wimplicit-function-declaration]
   exit(0);
   ^
./Main.c:12:3: warning: incompatible implicit declaration of built-in function ‘exit’
./Main.c:12:3: note: include ‘<stdlib.h>’ or provide a declaration of ‘exit’
./Main.c: In function ‘main’:
./Main.c:27:2: warning: implicit declaration of function ‘memset’ [-Wimplicit-function-declaration]
  memset(q,'#',w);
  ^
./Main.c:27:2: warning: incompatible implicit declaration of built-in function ‘memset’
./Main.c:27:2: note: include ‘<string.h>’ or provide a declaration of ‘memset’
./Main.c:36:4: warning: implicit declaration of function ‘strchr’ [-Wimplicit-function-declaration]
  f(strchr(p,'s'));
    ^
./Main.c:36:4: warning: incompatible implicit declaration of built-in function ‘strchr’
./Main.c:36:4: note: include ‘<string.h>’ or provide a declaration of ‘strchr’
./Main.c:23:2: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-...

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 5
AC × 83
Set Name Test Cases
Sample 00_sample_01.txt, 00_sample_02.txt, 00_sample_03.txt, 00_sample_04.txt, 00_sample_05.txt
All 00_min_01.txt, 00_min_02.txt, 00_min_03.txt, 00_min_04.txt, 00_min_05.txt, 00_min_06.txt, 00_min_07.txt, 00_min_08.txt, 00_sample_01.txt, 00_sample_02.txt, 00_sample_03.txt, 00_sample_04.txt, 00_sample_05.txt, 01_rnd_00.txt, 01_rnd_01.txt, 01_rnd_02.txt, 01_rnd_03.txt, 01_rnd_04.txt, 01_rnd_05.txt, 01_rnd_06.txt, 01_rnd_07.txt, 01_rnd_08.txt, 01_rnd_09.txt, 01_rnd_10.txt, 01_rnd_11.txt, 01_rnd_12.txt, 01_rnd_13.txt, 01_rnd_14.txt, 01_rnd_15.txt, 01_rnd_16.txt, 01_rnd_17.txt, 01_rnd_18.txt, 01_rnd_19.txt, 02_rndhard_00.txt, 02_rndhard_01.txt, 02_rndhard_02.txt, 02_rndhard_03.txt, 02_rndhard_04.txt, 02_rndhard_05.txt, 02_rndhard_06.txt, 02_rndhard_07.txt, 02_rndhard_08.txt, 02_rndhard_09.txt, 02_rndhard_10.txt, 02_rndhard_11.txt, 02_rndhard_12.txt, 02_rndhard_13.txt, 02_rndhard_14.txt, 02_rndhard_15.txt, 02_rndhard_16.txt, 02_rndhard_17.txt, 02_rndhard_18.txt, 02_rndhard_19.txt, 02_rndhard_20.txt, 02_rndhard_21.txt, 02_rndhard_22.txt, 02_rndhard_23.txt, 02_rndhard_24.txt, 02_rndhard_25.txt, 02_rndhard_26.txt, 02_rndhard_27.txt, 02_rndhard_28.txt, 02_rndhard_29.txt, 02_rndhard_30.txt, 02_rndhard_31.txt, 02_rndhard_32.txt, 02_rndhard_33.txt, 02_rndhard_34.txt, 02_rndhard_35.txt, 02_rndhard_36.txt, 02_rndhard_37.txt, 02_rndhard_38.txt, 02_rndhard_39.txt, 03_rndhardsmall_00.txt, 03_rndhardsmall_01.txt, 03_rndhardsmall_02.txt, 03_rndhardsmall_03.txt, 03_rndhardsmall_04.txt, 03_rndhardsmall_05.txt, 03_rndhardsmall_06.txt, 03_rndhardsmall_07.txt, 03_rndhardsmall_08.txt, 03_rndhardsmall_09.txt
Case Name Status Exec Time Memory
00_min_01.txt AC 1 ms 128 KB
00_min_02.txt AC 1 ms 128 KB
00_min_03.txt AC 1 ms 128 KB
00_min_04.txt AC 1 ms 128 KB
00_min_05.txt AC 1 ms 128 KB
00_min_06.txt AC 1 ms 128 KB
00_min_07.txt AC 1 ms 128 KB
00_min_08.txt AC 1 ms 128 KB
00_sample_01.txt AC 1 ms 128 KB
00_sample_02.txt AC 1 ms 128 KB
00_sample_03.txt AC 1 ms 128 KB
00_sample_04.txt AC 1 ms 128 KB
00_sample_05.txt AC 0 ms 128 KB
01_rnd_00.txt AC 1 ms 384 KB
01_rnd_01.txt AC 3 ms 1920 KB
01_rnd_02.txt AC 2 ms 896 KB
01_rnd_03.txt AC 2 ms 1280 KB
01_rnd_04.txt AC 1 ms 512 KB
01_rnd_05.txt AC 1 ms 384 KB
01_rnd_06.txt AC 3 ms 896 KB
01_rnd_07.txt AC 3 ms 1152 KB
01_rnd_08.txt AC 1 ms 384 KB
01_rnd_09.txt AC 1 ms 384 KB
01_rnd_10.txt AC 3 ms 512 KB
01_rnd_11.txt AC 1 ms 384 KB
01_rnd_12.txt AC 3 ms 1536 KB
01_rnd_13.txt AC 4 ms 1792 KB
01_rnd_14.txt AC 1 ms 384 KB
01_rnd_15.txt AC 1 ms 512 KB
01_rnd_16.txt AC 1 ms 384 KB
01_rnd_17.txt AC 3 ms 512 KB
01_rnd_18.txt AC 1 ms 384 KB
01_rnd_19.txt AC 5 ms 2688 KB
02_rndhard_00.txt AC 1 ms 384 KB
02_rndhard_01.txt AC 1 ms 384 KB
02_rndhard_02.txt AC 2 ms 384 KB
02_rndhard_03.txt AC 2 ms 384 KB
02_rndhard_04.txt AC 1 ms 384 KB
02_rndhard_05.txt AC 1 ms 384 KB
02_rndhard_06.txt AC 1 ms 384 KB
02_rndhard_07.txt AC 1 ms 384 KB
02_rndhard_08.txt AC 1 ms 384 KB
02_rndhard_09.txt AC 1 ms 384 KB
02_rndhard_10.txt AC 1 ms 384 KB
02_rndhard_11.txt AC 1 ms 384 KB
02_rndhard_12.txt AC 1 ms 384 KB
02_rndhard_13.txt AC 1 ms 384 KB
02_rndhard_14.txt AC 1 ms 384 KB
02_rndhard_15.txt AC 1 ms 384 KB
02_rndhard_16.txt AC 1 ms 384 KB
02_rndhard_17.txt AC 1 ms 384 KB
02_rndhard_18.txt AC 1 ms 384 KB
02_rndhard_19.txt AC 1 ms 384 KB
02_rndhard_20.txt AC 1 ms 384 KB
02_rndhard_21.txt AC 1 ms 384 KB
02_rndhard_22.txt AC 1 ms 384 KB
02_rndhard_23.txt AC 1 ms 384 KB
02_rndhard_24.txt AC 1 ms 384 KB
02_rndhard_25.txt AC 1 ms 384 KB
02_rndhard_26.txt AC 1 ms 384 KB
02_rndhard_27.txt AC 1 ms 384 KB
02_rndhard_28.txt AC 1 ms 384 KB
02_rndhard_29.txt AC 1 ms 384 KB
02_rndhard_30.txt AC 1 ms 384 KB
02_rndhard_31.txt AC 1 ms 384 KB
02_rndhard_32.txt AC 1 ms 384 KB
02_rndhard_33.txt AC 1 ms 384 KB
02_rndhard_34.txt AC 1 ms 384 KB
02_rndhard_35.txt AC 1 ms 384 KB
02_rndhard_36.txt AC 1 ms 384 KB
02_rndhard_37.txt AC 1 ms 384 KB
02_rndhard_38.txt AC 1 ms 384 KB
02_rndhard_39.txt AC 1 ms 384 KB
03_rndhardsmall_00.txt AC 1 ms 128 KB
03_rndhardsmall_01.txt AC 1 ms 128 KB
03_rndhardsmall_02.txt AC 1 ms 128 KB
03_rndhardsmall_03.txt AC 1 ms 128 KB
03_rndhardsmall_04.txt AC 1 ms 128 KB
03_rndhardsmall_05.txt AC 1 ms 128 KB
03_rndhardsmall_06.txt AC 1 ms 128 KB
03_rndhardsmall_07.txt AC 1 ms 128 KB
03_rndhardsmall_08.txt AC 1 ms 128 KB
03_rndhardsmall_09.txt AC 1 ms 128 KB