結果

問題 No.1323 うしらずSwap
ユーザー ei1333333ei1333333
提出日時 2020-12-07 23:30:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,714 bytes
コンパイル時間 2,334 ms
コンパイル使用メモリ 216,144 KB
実行使用メモリ 38,324 KB
最終ジャッジ日時 2023-10-21 09:34:36
合計ジャッジ時間 8,783 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 1 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
4,348 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 2 ms
4,348 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 69 ms
27,240 KB
testcase_17 AC 112 ms
27,184 KB
testcase_18 AC 67 ms
27,216 KB
testcase_19 AC 112 ms
27,224 KB
testcase_20 AC 70 ms
27,188 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 85 ms
35,768 KB
testcase_27 AC 87 ms
38,324 KB
testcase_28 AC 89 ms
27,180 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 153 ms
26,972 KB
testcase_34 AC 151 ms
27,052 KB
testcase_35 AC 157 ms
27,084 KB
testcase_36 AC 155 ms
27,176 KB
testcase_37 AC 156 ms
27,096 KB
testcase_38 AC 152 ms
26,976 KB
testcase_39 AC 159 ms
27,056 KB
testcase_40 AC 155 ms
27,084 KB
testcase_41 AC 161 ms
27,180 KB
testcase_42 AC 149 ms
27,096 KB
testcase_43 AC 64 ms
27,160 KB
testcase_44 AC 89 ms
27,096 KB
testcase_45 AC 84 ms
27,240 KB
testcase_46 AC 93 ms
27,096 KB
testcase_47 AC 71 ms
27,160 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using pi = pair< int, int >;
constexpr int inf = 1 << 30;
constexpr int vy[] = {-1, 1, 0, 0};
constexpr int vx[] = {0, 0, -1, 1};

template< typename T, typename E >
bool chmin(T &a, E b) {
  if(a > b) {
    a = b;
    return true;
  } else {
    return false;
  }
}

int main() {
  int H, W, Ya, Xa, Yb, Xb;
  cin >> H >> W >> Ya >> Xa >> Yb >> Xb;
  --Ya, --Xa, --Yb, --Xb;
  vector< string > S(H);
  for(auto &s : S) cin >> s;

  vector< vector< int > > min_cost(H, vector< int >(W, inf));
  vector< vector< int > > ways(H, vector< int >(W, 0));
  vector< vector< int > > from(H, vector< int >(W, -1));

  {
    queue< pi > que;
    min_cost[Ya][Xa] = 0;
    ways[Ya][Xa] = 1;
    que.emplace(Ya, Xa);
    while(!que.empty()) {
      auto[y, x] = que.front();
      que.pop();
      for(int k = 0; k < 4; k++) {
        int ny = y + vy[k];
        int nx = x + vx[k];
        if(S[ny][nx] == '#') continue;
        if(chmin(min_cost[ny][nx], min_cost[y][x] + 1)) {
          from[ny][nx] = k;
          ways[ny][nx] = 0;
          que.emplace(ny, nx);
        }
        if(min_cost[y][x] + 1 == min_cost[ny][nx]) {
          ways[ny][nx] += ways[y][x];
          chmin(ways[ny][nx], 2);
        }
      }
    }
  }

  if(ways[Yb][Xb] == 0) {
    cout << -1 << "\n";
    return 0;
  }

  if(ways[Yb][Xb] >= 2) {
    cout << min_cost[Yb][Xb] * 2 << "\n";
    return 0;
  }

  vector< pair< int, int > > path;
  int cy = Yb, cx = Xb;
  path.emplace_back(cy, cx);
  while(cy != Ya || cx != Xa) {
    int py = cy + vy[from[cy][cx] ^ 1];
    int px = cx + vx[from[cy][cx] ^ 1];
    cy = py;
    cx = px;
    path.emplace_back(cy, cx);
  }

  assert(min_cost[Yb][Xb] + 1 == path.size());

  for(auto &p : path) S[p.first][p.second] = '*';

  for(int i = 1; i + 1 < path.size(); i++) {
    for(int j = 0; j < 4; j++) {
      int ny = path[i].first + vy[j];
      int nx = path[i].second + vx[j];
      if(S[ny][nx] == '.') {
        cout << min_cost[Yb][Xb] * 2 + 2 << "\n";
        return 0;
      }
    }
  }


  int ret = inf;

  {
    vector< vector< int > > min_cost2(H, vector< int >(W, inf));
    queue< pi > que;
    min_cost2[Ya][Xa] = 0;
    que.emplace(Ya, Xa);
    while(!que.empty()) {
      auto[y, x] = que.front();
      que.pop();
      for(int k = 0; k < 4; k++) {
        int ny = y + vy[k];
        int nx = x + vx[k];
        if(S[ny][nx] == '#' || S[ny][nx] == '*') continue;
        if(chmin(min_cost2[ny][nx], min_cost2[y][x] + 1)) {
          que.emplace(ny, nx);
        }
      }
    }
    if(min_cost2[Yb][Xb] != inf) {
      chmin(ret, min_cost2[Yb][Xb] + min_cost[Ya][Xa]);
    }
  }


  if(ret >= inf) ret = -1;
  
  cout << ret << "\n";

}
0