結果

問題 No.1572 XI
ユーザー どららどらら
提出日時 2021-06-27 14:36:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 436 ms / 2,000 ms
コード長 2,119 bytes
コンパイル時間 4,097 ms
コンパイル使用メモリ 234,236 KB
実行使用メモリ 52,992 KB
最終ジャッジ日時 2024-06-25 11:41:45
合計ジャッジ時間 14,791 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
50,932 KB
testcase_01 AC 19 ms
50,816 KB
testcase_02 AC 19 ms
50,816 KB
testcase_03 AC 19 ms
50,816 KB
testcase_04 AC 105 ms
51,200 KB
testcase_05 AC 215 ms
51,456 KB
testcase_06 AC 261 ms
51,840 KB
testcase_07 AC 25 ms
50,816 KB
testcase_08 AC 224 ms
51,712 KB
testcase_09 AC 116 ms
51,268 KB
testcase_10 AC 180 ms
51,456 KB
testcase_11 AC 30 ms
50,968 KB
testcase_12 AC 91 ms
51,072 KB
testcase_13 AC 34 ms
50,904 KB
testcase_14 AC 93 ms
51,200 KB
testcase_15 AC 37 ms
51,072 KB
testcase_16 AC 76 ms
51,148 KB
testcase_17 AC 28 ms
50,816 KB
testcase_18 AC 107 ms
51,200 KB
testcase_19 AC 238 ms
51,712 KB
testcase_20 AC 162 ms
51,416 KB
testcase_21 AC 273 ms
51,712 KB
testcase_22 AC 223 ms
51,800 KB
testcase_23 AC 24 ms
50,816 KB
testcase_24 AC 22 ms
50,944 KB
testcase_25 AC 20 ms
50,816 KB
testcase_26 AC 22 ms
50,916 KB
testcase_27 AC 20 ms
50,816 KB
testcase_28 AC 20 ms
50,792 KB
testcase_29 AC 20 ms
50,876 KB
testcase_30 AC 26 ms
50,816 KB
testcase_31 AC 20 ms
50,816 KB
testcase_32 AC 19 ms
50,816 KB
testcase_33 AC 20 ms
50,816 KB
testcase_34 AC 402 ms
52,096 KB
testcase_35 AC 396 ms
51,952 KB
testcase_36 AC 402 ms
51,968 KB
testcase_37 AC 420 ms
51,968 KB
testcase_38 AC 410 ms
52,864 KB
testcase_39 AC 416 ms
52,992 KB
testcase_40 AC 379 ms
51,840 KB
testcase_41 AC 397 ms
52,096 KB
testcase_42 AC 396 ms
51,968 KB
testcase_43 AC 390 ms
51,960 KB
testcase_44 AC 436 ms
52,992 KB
testcase_45 AC 425 ms
52,988 KB
testcase_46 AC 423 ms
52,864 KB
testcase_47 AC 41 ms
52,864 KB
testcase_48 AC 430 ms
52,936 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int next_angle(int, int)':
main.cpp:68:1: warning: control reaches end of non-void function [-Wreturn-type]
   68 | }
      | ^

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it)
#define ALLOF(c) (c).begin(), (c).end()
typedef long long ll;
typedef unsigned long long ull;
//using mint = modint1000000007;
//using mint = modint998244353;

static const ll INF = 1e18;

int H, W;
int sy, sx;
int gy, gx;
string field[1005];

ll dist[1005][1005][6];

int vy[4] = {-1,1,0,0};
int vx[4] = {0,0,-1,1};

struct Pos {
  int y, x, a;
  ll dist;
};

int next_angle(int a, int k){
  if(a == 0){
    if(k==0) return 2;
    if(k==1) return 1;
    if(k==2) return 4;
    if(k==3) return 3;
  }
  if(a == 1){
    if(k==0) return 0;
    if(k==1) return 5;
    if(k==2) return 1;
    if(k==3) return 1;
  }
  if(a == 2){
    if(k==0) return 5;
    if(k==1) return 0;
    if(k==2) return 2;
    if(k==3) return 2;
  }
  if(a == 3){
    if(k==0) return 3;
    if(k==1) return 3;
    if(k==2) return 0;
    if(k==3) return 5;
  }
  if(a == 4){
    if(k==0) return 4;
    if(k==1) return 4;
    if(k==2) return 5;
    if(k==3) return 0;
  }
  if(a == 5){
    if(k==0) return 1;
    if(k==1) return 2;
    if(k==2) return 3;
    if(k==3) return 4;
  }
}

int main(){
  cin >> H >> W;
  cin >> sy >> sx;
  sy--;
  sx--;
  cin >> gy >> gx;
  gy--;
  gx--;
  rep(i,H) cin >> field[i];

  rep(i,1005) rep(j,1005) rep(k,6) dist[i][j][k] = INF;
  queue<Pos> que;
  que.push((Pos){sy,sx,0,0LL});
  while(!que.empty()){
    Pos pos = que.front(); que.pop();
    if(dist[pos.y][pos.x][pos.a] != INF) continue;
    dist[pos.y][pos.x][pos.a] = pos.dist;

    rep(k,4){
      int ny = pos.y + vy[k];
      int nx = pos.x + vx[k];
      if(ny<0 || ny>=H || nx<0 || nx>=W) continue;
      if(field[ny][nx] == '#') continue;
      int next_a = next_angle(pos.a, k);
      if(dist[ny][nx][next_a] != INF) continue;

      que.push((Pos){ny,nx,next_a,pos.dist+1});
    }
  }

  if(dist[gy][gx][0] == INF) cout << -1 << endl;
  else cout << dist[gy][gx][0] << endl;
  
  return 0;
}

0