Submission #11592692


Source Code Expand

#include <bits/stdc++.h>
#define rep(i,n) for (int i = 0; i < n; i++)
using namespace std;
using Field = vector<string>;
int dh[4] = {1, 0, -1, 0};
int dw[4] = {0, 1, 0, -1};
int H; int W;
Field S;
int res = 0;

void dfs(vector<vector<bool>> &seen, int h, int w) {
    seen[h][w] = true;
    rep(i, 4) {
        int nh = h + dh[i];
        int nw = w + dw[i];


        if(nh >= H || nh < 0 || nw >= W || nw < 0) continue;
        if(seen[nh][nw] == true) continue;
        if(S[nh][nw] == '#') continue;
        if(S[nh][nw] == 'g') {
            S[nh][nw] = true;
            break;
        }
        // S[nh][nw] = 1;
        dfs(seen, nh, nw);
    }

}
int main() {

    cin >> H >> W;
    //field
    S.resize(H);
    rep(i, H) {
        cin >> S[i];
    }
    int sh; int sw; int gh; int gw;

    rep(i, H) {
        rep(j, W){
            if (S[i][j] == 's') {
                sh = i;
                sw = j;
            }
            if (S[i][j] == 'g') {
                gh = i;
                gw = j;
            }
        }
    }
    vector<vector<bool>> seen(H, vector<bool>(W, 0));
    dfs(seen, sh, sw);
    if(S[gh][gw] == true) cout << "Yes" << endl;
    else cout << "No" << endl;


    return 0;
}

Submission Info

Submission Time
Task A - 深さ優先探索
User otter_med
Language C++14 (GCC 5.4.1)
Score 100
Code Size 1276 Byte
Status AC
Exec Time 25 ms
Memory 22912 KB

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 256 KB
00_min_02.txt AC 1 ms 256 KB
00_min_03.txt AC 1 ms 256 KB
00_min_04.txt AC 1 ms 256 KB
00_min_05.txt AC 1 ms 256 KB
00_min_06.txt AC 1 ms 256 KB
00_min_07.txt AC 1 ms 256 KB
00_min_08.txt AC 1 ms 256 KB
00_sample_01.txt AC 1 ms 256 KB
00_sample_02.txt AC 1 ms 256 KB
00_sample_03.txt AC 1 ms 256 KB
00_sample_04.txt AC 1 ms 256 KB
00_sample_05.txt AC 1 ms 256 KB
01_rnd_00.txt AC 10 ms 640 KB
01_rnd_01.txt AC 24 ms 18816 KB
01_rnd_02.txt AC 20 ms 7680 KB
01_rnd_03.txt AC 25 ms 22912 KB
01_rnd_04.txt AC 23 ms 17792 KB
01_rnd_05.txt AC 10 ms 640 KB
01_rnd_06.txt AC 18 ms 5376 KB
01_rnd_07.txt AC 20 ms 8448 KB
01_rnd_08.txt AC 10 ms 640 KB
01_rnd_09.txt AC 10 ms 640 KB
01_rnd_10.txt AC 15 ms 1536 KB
01_rnd_11.txt AC 10 ms 640 KB
01_rnd_12.txt AC 22 ms 14080 KB
01_rnd_13.txt AC 22 ms 13184 KB
01_rnd_14.txt AC 10 ms 640 KB
01_rnd_15.txt AC 17 ms 3584 KB
01_rnd_16.txt AC 10 ms 640 KB
01_rnd_17.txt AC 16 ms 2816 KB
01_rnd_18.txt AC 10 ms 640 KB
01_rnd_19.txt AC 25 ms 22272 KB
02_rndhard_00.txt AC 10 ms 640 KB
02_rndhard_01.txt AC 10 ms 640 KB
02_rndhard_02.txt AC 11 ms 768 KB
02_rndhard_03.txt AC 11 ms 768 KB
02_rndhard_04.txt AC 10 ms 640 KB
02_rndhard_05.txt AC 10 ms 640 KB
02_rndhard_06.txt AC 10 ms 640 KB
02_rndhard_07.txt AC 10 ms 640 KB
02_rndhard_08.txt AC 10 ms 640 KB
02_rndhard_09.txt AC 10 ms 640 KB
02_rndhard_10.txt AC 10 ms 640 KB
02_rndhard_11.txt AC 10 ms 640 KB
02_rndhard_12.txt AC 10 ms 640 KB
02_rndhard_13.txt AC 10 ms 640 KB
02_rndhard_14.txt AC 10 ms 640 KB
02_rndhard_15.txt AC 10 ms 640 KB
02_rndhard_16.txt AC 10 ms 640 KB
02_rndhard_17.txt AC 10 ms 640 KB
02_rndhard_18.txt AC 10 ms 640 KB
02_rndhard_19.txt AC 10 ms 640 KB
02_rndhard_20.txt AC 10 ms 640 KB
02_rndhard_21.txt AC 10 ms 640 KB
02_rndhard_22.txt AC 10 ms 640 KB
02_rndhard_23.txt AC 10 ms 640 KB
02_rndhard_24.txt AC 10 ms 640 KB
02_rndhard_25.txt AC 10 ms 640 KB
02_rndhard_26.txt AC 10 ms 640 KB
02_rndhard_27.txt AC 10 ms 640 KB
02_rndhard_28.txt AC 10 ms 640 KB
02_rndhard_29.txt AC 10 ms 640 KB
02_rndhard_30.txt AC 10 ms 640 KB
02_rndhard_31.txt AC 10 ms 640 KB
02_rndhard_32.txt AC 10 ms 640 KB
02_rndhard_33.txt AC 10 ms 640 KB
02_rndhard_34.txt AC 10 ms 640 KB
02_rndhard_35.txt AC 10 ms 640 KB
02_rndhard_36.txt AC 10 ms 640 KB
02_rndhard_37.txt AC 10 ms 640 KB
02_rndhard_38.txt AC 10 ms 640 KB
02_rndhard_39.txt AC 10 ms 640 KB
03_rndhardsmall_00.txt AC 1 ms 256 KB
03_rndhardsmall_01.txt AC 1 ms 256 KB
03_rndhardsmall_02.txt AC 1 ms 256 KB
03_rndhardsmall_03.txt AC 1 ms 256 KB
03_rndhardsmall_04.txt AC 1 ms 256 KB
03_rndhardsmall_05.txt AC 1 ms 256 KB
03_rndhardsmall_06.txt AC 1 ms 256 KB
03_rndhardsmall_07.txt AC 1 ms 256 KB
03_rndhardsmall_08.txt AC 1 ms 256 KB
03_rndhardsmall_09.txt AC 1 ms 256 KB