結果

問題 No.1572 XI
ユーザー 👑 NachiaNachia
提出日時 2021-06-27 13:34:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 919 ms / 2,000 ms
コード長 1,644 bytes
コンパイル時間 836 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 311,220 KB
最終ジャッジ日時 2024-06-25 11:26:39
合計ジャッジ時間 20,044 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 188 ms
67,964 KB
testcase_05 AC 442 ms
152,260 KB
testcase_06 AC 535 ms
190,156 KB
testcase_07 AC 14 ms
7,936 KB
testcase_08 AC 457 ms
157,792 KB
testcase_09 AC 213 ms
78,640 KB
testcase_10 AC 354 ms
126,524 KB
testcase_11 AC 27 ms
12,740 KB
testcase_12 AC 152 ms
58,620 KB
testcase_13 AC 36 ms
16,676 KB
testcase_14 AC 161 ms
59,800 KB
testcase_15 AC 35 ms
15,252 KB
testcase_16 AC 131 ms
50,668 KB
testcase_17 AC 12 ms
8,448 KB
testcase_18 AC 186 ms
71,244 KB
testcase_19 AC 465 ms
164,260 KB
testcase_20 AC 307 ms
110,252 KB
testcase_21 AC 549 ms
196,920 KB
testcase_22 AC 437 ms
149,276 KB
testcase_23 AC 10 ms
7,040 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 846 ms
284,564 KB
testcase_35 AC 807 ms
281,696 KB
testcase_36 AC 821 ms
288,372 KB
testcase_37 AC 889 ms
298,740 KB
testcase_38 AC 847 ms
293,860 KB
testcase_39 AC 898 ms
296,408 KB
testcase_40 AC 840 ms
274,696 KB
testcase_41 AC 859 ms
287,480 KB
testcase_42 AC 853 ms
291,796 KB
testcase_43 AC 837 ms
287,340 KB
testcase_44 AC 919 ms
311,092 KB
testcase_45 AC 904 ms
311,220 KB
testcase_46 AC 887 ms
310,936 KB
testcase_47 AC 634 ms
294,568 KB
testcase_48 AC 904 ms
311,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;
using ll = long long;
using ull = unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)


int dx[4] = { -1,0,1,0 };
int dy[4] = { 0,-1,0,1 };

int ddice[6][4] = {
  {3,2,1,4},
  {0,1,5,1},
  {2,5,2,0},
  {5,3,0,3},
  {4,0,4,5},
  {1,4,3,2}
};

int H,W;
int sy,sx, gy,gx;
int blocks[1000][1000];
vector<vector<int>> E;

int Vid(int y,int x,int dice){
  return (y*W + x) * 6 + dice;
}

int main(){
  cin >> H >> W;
  cin >> sy >> sx >> gy >> gx;
  sy--; sx--; gy--; gx--;
  rep(y,H) rep(x,W){
    char c; cin >> c;
    if(c == '.') blocks[y][x] = 0;
    else blocks[y][x] = 1;
  }

  E.resize(H*W*6);

  rep(y,H) rep(x,W) rep(d,6) rep(to,4){
    int ny = y + dy[to];
    int nx = x + dx[to];
    int nd = ddice[d][to];
    //cout << "d = " << d << ", to = " << to << ", nd = " << nd << endl;
    if(ny < 0 || H <= ny) continue;
    if(nx < 0 || W <= nx) continue;
    if(blocks[y][x]) continue;
    if(blocks[ny][nx]) continue;
    E[Vid(y,x,d)].push_back(Vid(ny,nx,nd));
  }

  vector<int> D(H*W*6,-1);
  vector<int> I;
  D[Vid(sy,sx,0)] = 0;
  I.push_back(Vid(sy,sx,0));
  for(int i=0; i<I.size(); i++){
    int p = I[i];
    for(int e : E[p]) if(D[e] == -1){
      D[e] = D[p] + 1;
      I.push_back(e);
    }
  }

  rep(y,H){
    rep(x,W){
      //rep(d,6) cout << D[Vid(y,x,d)] << " ";
      //cout << "  ";
    }
    //cout << endl;
  }
  //cout << endl;

  cout << D[Vid(gy,gx,0)] << endl;
  return 0;
}

struct ios_do_not_sync{
  ios_do_not_sync(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
  }
} ios_do_not_sync_inst;
0