結果

問題 No.323 yuki国
ユーザー ayame_pyayame_py
提出日時 2016-01-04 02:04:53
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 537 ms / 5,000 ms
コード長 1,458 bytes
コンパイル時間 1,574 ms
コンパイル使用メモリ 171,656 KB
実行使用メモリ 41,088 KB
最終ジャッジ日時 2024-09-19 11:06:06
合計ジャッジ時間 5,765 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 9 ms
8,960 KB
testcase_06 AC 8 ms
8,320 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 317 ms
40,960 KB
testcase_09 AC 93 ms
15,360 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 5 ms
7,296 KB
testcase_12 AC 5 ms
7,296 KB
testcase_13 AC 85 ms
14,592 KB
testcase_14 AC 299 ms
41,088 KB
testcase_15 AC 94 ms
12,416 KB
testcase_16 AC 224 ms
26,752 KB
testcase_17 AC 100 ms
13,696 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 201 ms
31,232 KB
testcase_20 AC 5 ms
5,376 KB
testcase_21 AC 537 ms
41,088 KB
testcase_22 AC 41 ms
6,528 KB
testcase_23 AC 533 ms
41,088 KB
testcase_24 AC 12 ms
5,376 KB
testcase_25 AC 122 ms
13,568 KB
testcase_26 AC 13 ms
5,376 KB
testcase_27 AC 456 ms
40,960 KB
testcase_28 AC 116 ms
14,592 KB
testcase_29 AC 111 ms
14,592 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 7 ms
8,320 KB
testcase_32 AC 6 ms
8,448 KB
testcase_33 AC 7 ms
8,320 KB
testcase_34 AC 7 ms
8,448 KB
testcase_35 AC 1 ms
5,376 KB
testcase_36 AC 7 ms
8,576 KB
testcase_37 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define REP(i, n) for(int i = 0; i < (int)(n); i++)
#define FOR(i,n,m) for (int i=n; i<(int)(m); i++)
#define INF 1000000007

int dx[4]={1,0,-1,0},dy[4]={0,1,0,-1};

struct state{int size, y, x;};
// 雪玉のサイズ 縦 横
int dist[4000][51][51];
int H,W,A,Sy,Sx,B,Gy,Gx;
string M[52];
map<char,int> ma;

bool isOK(int size,int y, int x){
    //範囲外
    if(y<0||H<=y||x<0||W<=x) return false;
    //とける
    if(size==1 && M[y][x]=='.') return false;
    //もう探索した
    if(dist[size+ma[M[y][x]]][y][x]) return false;
    //大きすぎ
    if(size > H * W + 1200) return false;
    return true;
}

int main(){
    cin >> H >> W;
    cin >> A >> Sy >> Sx;
    cin >> B >> Gy >> Gx;
    REP(i,H){
        cin >> M[i];
    }
    ma['.']=-1;
    ma['*']=1;
    queue<state> que;
    que.push(state{A,Sy,Sx});
    while(que.size()){
        state &s=que.front();que.pop();
        //cout << s.size << " " << s.x << " " << s.y << " " << dist[s.size][s.y][s.x] << endl;
        if(dist[s.size][s.y][s.x]) continue;
        else dist[s.size][s.y][s.x]=1;
        if(s.y==Gy && s.x==Gx && s.size==B) break;
        REP(i,4){
            if(isOK(s.size,s.y+dy[i],s.x+dx[i])){
                que.push(state{s.size+ma[M[s.y+dy[i]][s.x+dx[i]]],s.y+dy[i],s.x+dx[i]});
            }
        }
    }
    if(dist[B][Gy][Gx]) cout << "Yes" << endl;
    else cout << "No" << endl;
    
    
    return 0;
}
0