結果

問題 No.424 立体迷路
ユーザー firiexpfiriexp
提出日時 2019-08-21 18:20:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,376 bytes
コンパイル時間 709 ms
コンパイル使用メモリ 95,464 KB
最終ジャッジ日時 2024-04-27 02:54:56
合計ジャッジ時間 1,219 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:38:19: error: variable 'std::array<int, 4> dy' has initializer but incomplete type
   38 |     array<int, 4> dy{1, -1, 0, 0}, dx{0, 0, 1, -1};
      |                   ^~
main.cpp:38:36: error: variable 'std::array<int, 4> dx' has initializer but incomplete type
   38 |     array<int, 4> dy{1, -1, 0, 0}, dx{0, 0, 1, -1};
      |                                    ^~

ソースコード

diff #

#include <limits>
#include <iostream>
#include <algorithm>
#include <iomanip>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <numeric>
#include <bitset>
#include <cmath>

static const int MOD = 1000000007;
using ll = long long;
using u32 = uint32_t;
using namespace std;

template<class T> constexpr T INF = ::numeric_limits<T>::max()/32*15+208;

int main() {
    int h, w;
    cin >> h >> w;
    int sy, sx, gy, gx;
    cin >> sy >> sx >> gy >> gx;
    sy++; sx++; gy++; gx++;

    vector<vector<int>> grid(h+4, vector<int>(w+4, INF<int>)),
    dp(h+4, vector<int>(w+4, 0));
    for (int i = 0; i < h; ++i) {
        string s;
        cin >> s;
        for (int j = 0; j < w; ++j) {
            grid[i+2][j+2] = (s[j]-'0');
        }
    }
    queue<tuple<int, int>> Q;
    Q.emplace(sy, sx);
    array<int, 4> dy{1, -1, 0, 0}, dx{0, 0, 1, -1};
    while(!Q.empty()){
        int y, x; tie(y, x) = Q.front(); Q.pop();
        if(dp[y][x]) continue;
        dp[y][x] = 1;
        for (int i = 0; i < 4; ++i) {
            if(abs(grid[y][x]-grid[y+dy[i]][x+dx[i]]) <= 1){
                Q.emplace(y+dy[i], x+dx[i]);
            }else if(grid[y][x] == grid[y+dy[i]*2][x+dx[i]*2] && grid[y][x] > grid[y+dy[i]][x+dx[i]]){
                Q.emplace(y+dy[i]*2, x+dx[i]*2);
            }
        }
    }
    puts(dp[gy][gx] ? "YES" : "NO");
    return 0;
}
0