結果

問題 No.1572 XI
ユーザー shiomusubi496shiomusubi496
提出日時 2021-06-27 15:09:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 472 ms / 2,000 ms
コード長 812 bytes
コンパイル時間 2,241 ms
コンパイル使用メモリ 217,684 KB
実行使用メモリ 91,648 KB
最終ジャッジ日時 2024-06-25 11:46:04
合計ジャッジ時間 11,488 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 81 ms
21,376 KB
testcase_05 AC 197 ms
45,312 KB
testcase_06 AC 231 ms
54,272 KB
testcase_07 AC 7 ms
6,944 KB
testcase_08 AC 197 ms
47,104 KB
testcase_09 AC 90 ms
23,936 KB
testcase_10 AC 154 ms
37,376 KB
testcase_11 AC 13 ms
6,940 KB
testcase_12 AC 66 ms
18,048 KB
testcase_13 AC 16 ms
6,940 KB
testcase_14 AC 70 ms
18,816 KB
testcase_15 AC 16 ms
6,940 KB
testcase_16 AC 56 ms
15,872 KB
testcase_17 AC 6 ms
6,944 KB
testcase_18 AC 83 ms
22,016 KB
testcase_19 AC 213 ms
49,024 KB
testcase_20 AC 131 ms
32,384 KB
testcase_21 AC 240 ms
56,320 KB
testcase_22 AC 190 ms
44,544 KB
testcase_23 AC 5 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 3 ms
6,944 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 372 ms
82,688 KB
testcase_35 AC 364 ms
81,536 KB
testcase_36 AC 375 ms
83,840 KB
testcase_37 AC 387 ms
86,656 KB
testcase_38 AC 384 ms
86,272 KB
testcase_39 AC 383 ms
87,040 KB
testcase_40 AC 365 ms
79,744 KB
testcase_41 AC 379 ms
83,584 KB
testcase_42 AC 379 ms
84,608 KB
testcase_43 AC 378 ms
83,200 KB
testcase_44 AC 472 ms
91,520 KB
testcase_45 AC 415 ms
91,264 KB
testcase_46 AC 412 ms
91,520 KB
testcase_47 AC 133 ms
91,264 KB
testcase_48 AC 406 ms
91,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
using namespace std;
int dx[4]={0,1,0,-1},dy[4]={1,0,-1,0};
int dr[4][6]={{1,5,2,0,4,3},{4,1,0,3,5,2},{3,0,2,5,4,1},{2,1,5,3,0,4}};
signed main(){
  int H,W; cin>>H>>W;
  int sx,sy; cin>>sx>>sy; sx--; sy--;
  int gx,gy; cin>>gx>>gy; gx--; gy--;
  vector<string> G(H);
  for(int i=0;i<H;i++)cin>>G[i];
  vector<vector<vector<int>>> dist(H,vector<vector<int>>(W,vector<int>(6,-1)));
  dist[sx][sy][0]=0;
  queue<tuple<int,int,int>> Q; Q.push({sx,sy,0});
  while(!Q.empty()){
    auto[x,y,r]=Q.front(); Q.pop();
    for(int i=0;i<4;i++){
      int X=x+dx[i],Y=y+dy[i],R=dr[i][r];
      if(0<=X && X<H && 0<=Y && Y<W && G[X][Y]=='.' && dist[X][Y][R]==-1){
        dist[X][Y][R]=dist[x][y][r]+1;
        Q.push({X,Y,R});
      }
    }
  }
  cout<<dist[gx][gy][0]<<endl;
}
0