結果

問題 No.1572 XI
ユーザー chocoruskchocorusk
提出日時 2021-08-15 03:18:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 1,815 bytes
コンパイル時間 3,311 ms
コンパイル使用メモリ 194,928 KB
実行使用メモリ 29,312 KB
最終ジャッジ日時 2024-10-06 10:37:36
合計ジャッジ時間 10,575 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 53 ms
11,136 KB
testcase_05 AC 129 ms
16,512 KB
testcase_06 AC 157 ms
24,320 KB
testcase_07 AC 7 ms
5,248 KB
testcase_08 AC 138 ms
21,376 KB
testcase_09 AC 64 ms
27,264 KB
testcase_10 AC 102 ms
25,984 KB
testcase_11 AC 11 ms
13,972 KB
testcase_12 AC 48 ms
27,076 KB
testcase_13 AC 16 ms
11,136 KB
testcase_14 AC 48 ms
17,792 KB
testcase_15 AC 12 ms
5,248 KB
testcase_16 AC 39 ms
20,480 KB
testcase_17 AC 7 ms
12,928 KB
testcase_18 AC 57 ms
23,936 KB
testcase_19 AC 139 ms
23,680 KB
testcase_20 AC 90 ms
24,832 KB
testcase_21 AC 162 ms
22,400 KB
testcase_22 AC 126 ms
24,128 KB
testcase_23 AC 8 ms
8,320 KB
testcase_24 AC 3 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 3 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 3 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 3 ms
5,248 KB
testcase_32 AC 3 ms
5,248 KB
testcase_33 AC 3 ms
5,248 KB
testcase_34 AC 255 ms
27,136 KB
testcase_35 AC 248 ms
28,032 KB
testcase_36 AC 248 ms
27,520 KB
testcase_37 AC 259 ms
28,160 KB
testcase_38 AC 253 ms
28,160 KB
testcase_39 AC 263 ms
29,152 KB
testcase_40 AC 242 ms
27,964 KB
testcase_41 AC 254 ms
28,244 KB
testcase_42 AC 255 ms
28,032 KB
testcase_43 AC 250 ms
28,160 KB
testcase_44 AC 272 ms
29,184 KB
testcase_45 AC 277 ms
29,184 KB
testcase_46 AC 273 ms
29,312 KB
testcase_47 AC 30 ms
29,056 KB
testcase_48 AC 269 ms
29,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;
using mint=modint998244353;
int h, w;
int sy, sx, gy, gx;
string s[1010];
int d[6][1010][1010];
int main()
{
    cin>>h>>w;
    cin>>sy>>sx;
    cin>>gy>>gx;
    sy--; sx--; gy--; gx--;
    for(int i=0; i<h; i++){
        cin>>s[i];
    }
    const int INF=1e9;
    for(int i=0; i<h; i++){
        for(int j=0; j<w; j++){
            for(int k=0; k<6; k++){
                d[k][i][j]=INF;
            }
        }
    }
    d[0][sy][sx]=0;
    using Pi=pair<P, int>;
    queue<Pi> que;
    que.push({{sy, sx}, 0});
    int dy[4]={1, -1, 0, 0}, dx[4]={0, 0, 1, -1};
    vector<vector<int>> v{{2,3,4,5},{3,2,5,4},{1,0,2,2},{0,1,3,3},{4,4,1,0},{5,5,0,1}};
    while(!que.empty()){
        auto p=que.front(); que.pop();
        int t=p.second;
        int y=p.first.first, x=p.first.second;
        for(int k=0; k<4; k++){
            int y1=y+dy[k], x1=x+dx[k];
            if(y1<0 || y1>=h || x1<0 || x1>=w || s[y1][x1]=='#') continue;
            int t1=v[t][k];
            if(d[t1][y1][x1]>d[t][y][x]+1){
                d[t1][y1][x1]=d[t][y][x]+1;
                que.push({{y1, x1}, t1});
            }
        }
    }
    if(d[0][gy][gx]==INF) cout<<-1<<endl;
    else cout<<d[0][gy][gx]<<endl;
    return 0;
}
0