結果
| 問題 |
No.424 立体迷路
|
| コンテスト | |
| ユーザー |
mayoko_
|
| 提出日時 | 2016-09-22 22:35:29 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 2,057 bytes |
| コンパイル時間 | 903 ms |
| コンパイル使用メモリ | 105,200 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-05 07:00:21 |
| 合計ジャッジ時間 | 1,684 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 5 |
| other | AC * 21 |
ソースコード
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
//#include<cctype>
#include<climits>
#include<iostream>
#include<string>
#include<vector>
#include<map>
//#include<list>
#include<queue>
#include<deque>
#include<algorithm>
//#include<numeric>
#include<utility>
//#include<memory>
#include<functional>
#include<cassert>
#include<set>
#include<stack>
#include<random>
const int dx[] = {1, 0, -1, 0};
const int dy[] = {0, -1, 0, 1};
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef pair<int, int> pii;
bool done[55][55];
int board[55][55];
string field[55];
int main() {
cin.tie(0);
ios::sync_with_stdio(false);
int H, W;
cin >> H >> W;
int sx, sy, gx, gy;
cin >> sy >> sx >> gy >> gx;
sy--; sx--; gy--; gx--;
for (int i = 0; i < H; i++) {
cin >> field[i];
for (int j = 0; j < W; j++)
board[i][j] = field[i][j] - '0';
}
queue<pii> que;
que.push(pii(sy, sx));
done[sy][sx] = true;
while (!que.empty()) {
int y = que.front().first, x = que.front().second;
que.pop();
for (int i = 0; i < 4; i++) {
int ny = y+dy[i], nx = x+dx[i];
int nny = y+2*dy[i], nnx = x+2*dx[i];
if (0 <= ny && ny < H && 0 <= nx && nx < W) {
if (abs(board[y][x] - board[ny][nx]) <= 1) {
if (!done[ny][nx]) {
que.push(pii(ny, nx));
done[ny][nx] = true;
}
}
}
if (0 <= nny && nny < H && 0 <= nnx && nnx < W) {
if (abs(board[y][x] - board[nny][nnx]) <= 0 && board[ny][nx] < board[y][x]) {
if (!done[nny][nnx]) {
que.push(pii(nny, nnx));
done[nny][nnx] = true;
}
}
}
}
}
if (done[gy][gx]) cout << "YES" << endl;
else cout << "NO" << endl;
return 0;
}
mayoko_