Submission #11227612


Source Code Expand

import sys
sys.setrecursionlimit(500000)
def dfs(h, w):
    if field[h][w] == 'g':
        print('Yes')
        exit()
    seen[h][w] = True
    dx = [1, 0, -1, 0]
    dy = [0, 1, 0, -1]
    for dir in range(4):
        nh = h + dx[dir]
        nw = w + dy[dir]

        if nh < 0 or nw < 0 or nh >= H or nw >= W:
            continue
        if field[nh][nw] == '#':
            continue
        if seen[nh][nw]:
            continue
        dfs(nh, nw)
H, W = map(int, input().split())
seen = [[False for _ in range(W)] for _ in range(H)]
field = [list(input()) for h in range(H)]
sh, sw, gh, gw = '', '', '', ''
for h in range(H):
    for w in range(W):
        if field[h][w] == 's':
            sh, sw = h, w
        if field[h][w] == 'g':
            gh, gw = h, w
dfs(sh, sw)
print('No')

Submission Info

Submission Time
Task A - 深さ優先探索
User otomikesuy
Language Python (3.4.3)
Score 0
Code Size 825 Byte
Status MLE
Exec Time 1103 ms
Memory 268140 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 100
Status
AC × 5
AC × 82
MLE × 1
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 17 ms 3064 KB
00_min_02.txt AC 17 ms 3064 KB
00_min_03.txt AC 18 ms 3064 KB
00_min_04.txt AC 17 ms 3064 KB
00_min_05.txt AC 17 ms 3064 KB
00_min_06.txt AC 17 ms 3064 KB
00_min_07.txt AC 17 ms 3064 KB
00_min_08.txt AC 17 ms 3064 KB
00_sample_01.txt AC 17 ms 3064 KB
00_sample_02.txt AC 17 ms 3064 KB
00_sample_03.txt AC 18 ms 3064 KB
00_sample_04.txt AC 17 ms 3064 KB
00_sample_05.txt AC 17 ms 3064 KB
01_rnd_00.txt AC 97 ms 7540 KB
01_rnd_01.txt AC 257 ms 63320 KB
01_rnd_02.txt AC 256 ms 43744 KB
01_rnd_03.txt AC 347 ms 84152 KB
01_rnd_04.txt AC 485 ms 116808 KB
01_rnd_05.txt AC 96 ms 7540 KB
01_rnd_06.txt AC 503 ms 65116 KB
01_rnd_07.txt AC 271 ms 51008 KB
01_rnd_08.txt AC 104 ms 7412 KB
01_rnd_09.txt AC 99 ms 7412 KB
01_rnd_10.txt AC 344 ms 18284 KB
01_rnd_11.txt AC 97 ms 7540 KB
01_rnd_12.txt AC 147 ms 23408 KB
01_rnd_13.txt AC 259 ms 55112 KB
01_rnd_14.txt AC 100 ms 7540 KB
01_rnd_15.txt AC 266 ms 35172 KB
01_rnd_16.txt AC 98 ms 7540 KB
01_rnd_17.txt AC 440 ms 34092 KB
01_rnd_18.txt AC 96 ms 7412 KB
01_rnd_19.txt MLE 1103 ms 268140 KB
02_rndhard_00.txt AC 106 ms 7668 KB
02_rndhard_01.txt AC 107 ms 7668 KB
02_rndhard_02.txt AC 153 ms 8960 KB
02_rndhard_03.txt AC 155 ms 8948 KB
02_rndhard_04.txt AC 98 ms 7540 KB
02_rndhard_05.txt AC 95 ms 7540 KB
02_rndhard_06.txt AC 108 ms 7540 KB
02_rndhard_07.txt AC 111 ms 7540 KB
02_rndhard_08.txt AC 114 ms 7924 KB
02_rndhard_09.txt AC 113 ms 7924 KB
02_rndhard_10.txt AC 118 ms 7924 KB
02_rndhard_11.txt AC 116 ms 7924 KB
02_rndhard_12.txt AC 114 ms 7796 KB
02_rndhard_13.txt AC 110 ms 7796 KB
02_rndhard_14.txt AC 123 ms 8180 KB
02_rndhard_15.txt AC 113 ms 8180 KB
02_rndhard_16.txt AC 104 ms 7540 KB
02_rndhard_17.txt AC 102 ms 7540 KB
02_rndhard_18.txt AC 106 ms 7540 KB
02_rndhard_19.txt AC 102 ms 7668 KB
02_rndhard_20.txt AC 108 ms 7796 KB
02_rndhard_21.txt AC 115 ms 7796 KB
02_rndhard_22.txt AC 110 ms 7924 KB
02_rndhard_23.txt AC 116 ms 7924 KB
02_rndhard_24.txt AC 102 ms 7540 KB
02_rndhard_25.txt AC 103 ms 7540 KB
02_rndhard_26.txt AC 107 ms 7540 KB
02_rndhard_27.txt AC 114 ms 7540 KB
02_rndhard_28.txt AC 101 ms 7668 KB
02_rndhard_29.txt AC 107 ms 7668 KB
02_rndhard_30.txt AC 98 ms 7540 KB
02_rndhard_31.txt AC 103 ms 7540 KB
02_rndhard_32.txt AC 110 ms 7924 KB
02_rndhard_33.txt AC 106 ms 7924 KB
02_rndhard_34.txt AC 101 ms 7668 KB
02_rndhard_35.txt AC 108 ms 7668 KB
02_rndhard_36.txt AC 103 ms 7540 KB
02_rndhard_37.txt AC 106 ms 7540 KB
02_rndhard_38.txt AC 106 ms 7668 KB
02_rndhard_39.txt AC 118 ms 7668 KB
03_rndhardsmall_00.txt AC 17 ms 3064 KB
03_rndhardsmall_01.txt AC 17 ms 3064 KB
03_rndhardsmall_02.txt AC 17 ms 3064 KB
03_rndhardsmall_03.txt AC 17 ms 3064 KB
03_rndhardsmall_04.txt AC 17 ms 3064 KB
03_rndhardsmall_05.txt AC 17 ms 3064 KB
03_rndhardsmall_06.txt AC 17 ms 3064 KB
03_rndhardsmall_07.txt AC 17 ms 3064 KB
03_rndhardsmall_08.txt AC 17 ms 3064 KB
03_rndhardsmall_09.txt AC 17 ms 3064 KB