結果

問題 No.323 yuki国
ユーザー face4face4
提出日時 2019-03-18 13:49:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 391 ms / 5,000 ms
コード長 1,108 bytes
コンパイル時間 636 ms
コンパイル使用メモリ 76,488 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-07-18 08:00:39
合計ジャッジ時間 6,581 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 6 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 218 ms
12,032 KB
testcase_09 AC 210 ms
12,032 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 244 ms
12,032 KB
testcase_14 AC 224 ms
12,032 KB
testcase_15 AC 92 ms
11,904 KB
testcase_16 AC 262 ms
12,032 KB
testcase_17 AC 286 ms
12,160 KB
testcase_18 AC 70 ms
6,144 KB
testcase_19 AC 150 ms
8,704 KB
testcase_20 AC 370 ms
12,160 KB
testcase_21 AC 391 ms
12,288 KB
testcase_22 AC 376 ms
12,160 KB
testcase_23 AC 365 ms
12,032 KB
testcase_24 AC 97 ms
12,032 KB
testcase_25 AC 94 ms
12,032 KB
testcase_26 AC 315 ms
12,032 KB
testcase_27 AC 323 ms
12,032 KB
testcase_28 AC 271 ms
12,032 KB
testcase_29 AC 272 ms
12,032 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<queue>
#include<cstring>
using namespace std;
#define inRange(x,a,b) (a <= x && x < b)
int di[8] = {0,0,1,-1,1,1,-1,-1};
int dj[8] = {1,-1,0,0,1,-1,1,-1};

int main(){
    int h, w, a, si, sj, b, gi, gj;
    cin >> h >> w >> a >> si >> sj >> b >> gi >> gj;
    char mat[h][w];
    for(int i = 0; i < h*w; i++)    cin >> mat[i/w][i%w];
    bool dp[h][w][3500+1];
    memset(dp, 0, sizeof(dp));
    queue<pair<int,pair<int,int>>> q;
    q.push({a, {si,sj}});
    while(!q.empty()){
        auto p = q.front(); q.pop();
        int i = p.second.first, j = p.second.second, c = p.first;
        if(dp[i][j][c]) continue;
        dp[i][j][c] = true;
        if(c == 0)  continue;
        for(int k = 0; k < 4; k++){
            int ni = i+di[k], nj = j+dj[k];
            if(!inRange(ni,0,h) || !inRange(nj,0,w) || c+(mat[ni][nj]=='*'?1:-1) > 3500 || dp[ni][nj][c+(mat[ni][nj]=='*'?1:-1)]){
                continue;
            }
            q.push({c+(mat[ni][nj]=='*'?1:-1), {ni,nj}});
        }
    }
    cout << (dp[gi][gj][b]?"Yes":"No") << endl;
    return 0;
}
0