結果

問題 No.2695 Warp Zone
ユーザー yamate11yamate11
提出日時 2024-03-22 22:20:43
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 1,831 bytes
コンパイル時間 3,227 ms
コンパイル使用メモリ 257,792 KB
実行使用メモリ 6,548 KB
最終ジャッジ日時 2024-03-22 22:21:01
合計ジャッジ時間 4,489 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,548 KB
testcase_01 AC 2 ms
6,548 KB
testcase_02 AC 2 ms
6,548 KB
testcase_03 AC 28 ms
6,548 KB
testcase_04 AC 27 ms
6,548 KB
testcase_05 AC 27 ms
6,548 KB
testcase_06 AC 28 ms
6,548 KB
testcase_07 AC 28 ms
6,548 KB
testcase_08 AC 2 ms
6,548 KB
testcase_09 AC 11 ms
6,548 KB
testcase_10 AC 2 ms
6,548 KB
testcase_11 AC 4 ms
6,548 KB
testcase_12 AC 15 ms
6,548 KB
testcase_13 AC 2 ms
6,548 KB
testcase_14 AC 18 ms
6,548 KB
testcase_15 AC 10 ms
6,548 KB
testcase_16 AC 4 ms
6,548 KB
testcase_17 AC 7 ms
6,548 KB
testcase_18 AC 22 ms
6,548 KB
testcase_19 AC 2 ms
6,548 KB
testcase_20 AC 20 ms
6,548 KB
testcase_21 AC 18 ms
6,548 KB
testcase_22 AC 9 ms
6,548 KB
testcase_23 AC 14 ms
6,548 KB
testcase_24 AC 2 ms
6,548 KB
testcase_25 AC 2 ms
6,548 KB
testcase_26 AC 2 ms
6,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <cassert>
using namespace std;
using ll = long long int;
using u64 = unsigned long long;
using pll = pair<ll, ll>;
// #include <atcoder/all>
// using namespace atcoder;
#define REP(i, a, b) for (ll i = (a); i < (b); i++)
#define REPrev(i, a, b) for (ll i = (a); i >= (b); i--)
#define ALL(coll) (coll).begin(), (coll).end()
#define SIZE(v) ((ll)((v).size()))
#define REPOUT(i, a, b, exp, sep) REP(i, (a), (b)) cout << (exp) << (i + 1 == (b) ? "" : (sep)); cout << "\n"

// @@ !! LIM()

int main(/* int argc, char *argv[] */) {
  ios_base::sync_with_stdio(false);
  cin.tie(nullptr);
  cout << setprecision(20);

  ll H, W, N; cin >> H >> W >> N;
  // @InpGrid(N, 4, X) [Yv5LuQmU]
  auto X = vector(N, vector(4, ll()));
  for (int i = 0; i < N; i++) for (int j = 0; j < 4; j++) { ll v; cin >> v; X[i][j] = v; }
  // @End [Yv5LuQmU]

  auto cx = [&](ll i) -> ll {
    if (i < N) return X[i][0];
    if (i < 2*N) return X[i - N][2];
    if (i == 2*N) return 1;
    if (i == 2*N + 1) return H;
    assert(0);
  };
  auto cy = [&](ll i) -> ll {
    if (i < N) return X[i][1];
    if (i < 2*N) return X[i - N][3];
    if (i == 2*N) return 1;
    if (i == 2*N + 1) return W;
    assert(0);
  };

  ll big = 1e18;
  vector<ll> dist(2*N + 2, big);
  priority_queue<pll, vector<pll>, greater<pll>> pque;
  dist[2*N] = 0;
  pque.emplace(0, 2*N);
  while (not pque.empty()) {
    auto [d, idx] = pque.top(); pque.pop();
    if (dist[idx] == d) {
      REP(j, 0, 2*N + 2) {
        if (idx == j) continue;
        ll newd;
        if (idx < N and j == idx + N) newd = d + 1;
        else newd = d + abs(cx(idx) - cx(j)) + abs(cy(idx) - cy(j));
        if (newd < dist[j]) {
          dist[j] = newd;
          pque.emplace(newd, j);
        }
      }
    }
  }
  cout << dist[2*N + 1] << endl;

  return 0;
}

0