結果
| 問題 | No.1572 XI |
| コンテスト | |
| ユーザー |
SSRS
|
| 提出日時 | 2021-06-27 13:43:22 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 1,658 ms / 2,000 ms |
| コード長 | 1,794 bytes |
| コンパイル時間 | 2,981 ms |
| コンパイル使用メモリ | 219,232 KB |
| 実行使用メモリ | 175,360 KB |
| 最終ジャッジ日時 | 2025-03-23 14:01:51 |
| 合計ジャッジ時間 | 22,711 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 45 |
ソースコード
#define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
using namespace std;
vector<vector<int>> R = {{-1, 3, 1, 4, 2, -1}, {2, -1, 5, 0, -1, 3}, {4, 0, -1, -1, 5, 1}, {1, 5, -1, -1, 0, 4}, {3, -1, 0, 5, -1, 2}, {-1, 2, 4, 1, 3, -1}};
int main(){
int H, W;
cin >> H >> W;
int sy, sx;
cin >> sy >> sx;
sy--;
sx--;
int gy, gx;
cin >> gy >> gx;
gy--;
gx--;
vector<vector<char>> A(H, vector<char>(W));
for (int i = 0; i < H; i++){
for (int j = 0; j < W; j++){
cin >> A[i][j];
}
}
queue<tuple<int, int, int, int>> Q;
Q.push(make_tuple(sy, sx, 0, 1));
vector<vector<vector<vector<int>>>> d(6, vector<vector<vector<int>>>(6, vector<vector<int>>(H, vector<int>(W, -1))));
d[0][1][sy][sx] = 0;
int ans = -1;
while (!Q.empty()){
int y = get<0>(Q.front());
int x = get<1>(Q.front());
int t = get<2>(Q.front());
int f = get<3>(Q.front());
Q.pop();
if (y == gy && x == gx && t == 0){
ans = d[t][f][y][x];
break;
}
int r = R[t][f];
if (y < H - 1){
if (A[y + 1][x] == '.' && d[5 - f][t][y + 1][x] == -1){
d[5 - f][t][y + 1][x] = d[t][f][y][x] + 1;
Q.push(make_tuple(y + 1, x, 5 - f, t));
}
}
if (y > 0){
if (A[y - 1][x] == '.' && d[f][5 - t][y - 1][x] == -1){
d[f][5 - t][y - 1][x] = d[t][f][y][x] + 1;
Q.push(make_tuple(y - 1, x, f, 5 - t));
}
}
if (x < W - 1){
if (A[y][x + 1] == '.' && d[5 - r][f][y][x + 1] == -1){
d[5 - r][f][y][x + 1] = d[t][f][y][x] + 1;
Q.push(make_tuple(y, x + 1, 5 - r, f));
}
}
if (x > 0){
if (A[y][x - 1] == '.' && d[r][f][y][x - 1] == -1){
d[r][f][y][x - 1] = d[t][f][y][x] + 1;
Q.push(make_tuple(y, x - 1, r, f));
}
}
}
cout << ans << endl;
}
SSRS