結果

問題 No.323 yuki国
ユーザー btkbtk
提出日時 2015-12-17 10:08:21
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 181 ms / 5,000 ms
コード長 1,337 bytes
コンパイル時間 1,400 ms
コンパイル使用メモリ 164,460 KB
実行使用メモリ 12,772 KB
最終ジャッジ日時 2024-06-28 12:25:25
合計ジャッジ時間 4,714 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
12,544 KB
testcase_01 AC 5 ms
12,544 KB
testcase_02 AC 5 ms
12,672 KB
testcase_03 AC 9 ms
12,600 KB
testcase_04 AC 7 ms
12,544 KB
testcase_05 AC 7 ms
12,544 KB
testcase_06 AC 6 ms
12,544 KB
testcase_07 AC 6 ms
12,644 KB
testcase_08 AC 109 ms
12,552 KB
testcase_09 AC 108 ms
12,628 KB
testcase_10 AC 6 ms
12,416 KB
testcase_11 AC 6 ms
12,540 KB
testcase_12 AC 6 ms
12,672 KB
testcase_13 AC 128 ms
12,656 KB
testcase_14 AC 125 ms
12,652 KB
testcase_15 AC 40 ms
12,492 KB
testcase_16 AC 110 ms
12,616 KB
testcase_17 AC 134 ms
12,672 KB
testcase_18 AC 40 ms
12,652 KB
testcase_19 AC 82 ms
12,576 KB
testcase_20 AC 161 ms
12,648 KB
testcase_21 AC 179 ms
12,688 KB
testcase_22 AC 172 ms
12,672 KB
testcase_23 AC 181 ms
12,564 KB
testcase_24 AC 41 ms
12,632 KB
testcase_25 AC 42 ms
12,772 KB
testcase_26 AC 135 ms
12,672 KB
testcase_27 AC 137 ms
12,568 KB
testcase_28 AC 135 ms
12,672 KB
testcase_29 AC 129 ms
12,536 KB
testcase_30 AC 5 ms
12,416 KB
testcase_31 AC 5 ms
12,416 KB
testcase_32 AC 4 ms
12,544 KB
testcase_33 AC 5 ms
12,580 KB
testcase_34 AC 6 ms
12,636 KB
testcase_35 AC 5 ms
12,544 KB
testcase_36 AC 6 ms
12,672 KB
testcase_37 AC 6 ms
12,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
const LL mod=1e9+7;

struct UNKO{
    int r,c,cnt;
    UNKO(int _r,int _c,int _cnt){r=_r,c=_c,cnt=_cnt;}
    UNKO(){r=c=cnt=0;}
};
int akichi[52][52];
bool dp[52][52][3501];
const int INF=-(1e5);
const int dir[5]={-1,0,1,0,-1};
inline bool inner(int l,int n,int r){
    return(l<=n&&n<=r);
}
int main() {
    for(int i = 0; i < 52; i++)
        for(int j = 0; j < 52; j++){
            akichi[i][j]=INF;
            for(int k = 0; k < 3501; k++)
                dp[i][j][k]=false;
            }
    int R,C;cin>>R>>C;
    int A,sr,sc;cin>>A>>sr>>sc;
    int B,gr,gc;cin>>B>>gr>>gc;
    for(int i = 0; i < R; i++)
        for(int j = 0; j < C; j++){
            char c;cin>>c;
            if(c=='*')akichi[i+1][j+1]=1;
            else akichi[i+1][j+1]=-1;

        }
    queue<UNKO> que;
    que.push(UNKO(sr+1,sc+1,A));
    dp[sr+1][sc+1][A]=true;
    while(que.empty()==false){
        auto v=que.front();que.pop();
        for(int i=0;i<4;i++){
            int nr=v.r+dir[i],nc=v.c+dir[i+1],ncnt=v.cnt+akichi[nr][nc];
            if(inner(1,ncnt,3500)&&dp[nr][nc][ncnt]==false){
                dp[nr][nc][ncnt]=true;
                que.push(UNKO(nr,nc,ncnt));
            }
        }
    }
    if(dp[gr+1][gc+1][B])cout<<"Yes"<<endl;
    else cout<<"No"<<endl;

}
0