結果

問題 No.2913 二次元距離空間
ユーザー haihamabossuhaihamabossu
提出日時 2024-10-04 23:19:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,284 bytes
コンパイル時間 2,473 ms
コンパイル使用メモリ 213,816 KB
実行使用メモリ 16,420 KB
最終ジャッジ日時 2024-10-04 23:19:34
合計ジャッジ時間 6,017 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,632 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 1 ms
6,816 KB
testcase_13 AC 6 ms
6,820 KB
testcase_14 AC 6 ms
6,816 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 8 ms
7,424 KB
testcase_17 AC 19 ms
7,424 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)

const ll INF = 1e18, DI[4] = {0, 1, 0, -1}, DJ[4] = {1, 0, -1, 0};
void solve() {
  ll h, w;
  cin >> h >> w;
  vector<string> s(h);
  rep(i, h) cin >> s[i];
  vector dist(h, vector<pair<ll, ll>>(w, {INF, INF}));
  dist[0][0] = {0, 0};
  priority_queue<pair<pair<ll, ll>, pair<ll, ll>>> que;
  que.push({{0, 0}, {0, 0}});
  while (!que.empty()) {
    auto dxy = que.top().first;
    auto [ci, cj] = que.top().second;
    que.pop();
    if (dist[ci][cj] < dxy)
      continue;
    rep(dir, 4) {
      ll ni = ci + DI[dir];
      ll nj = cj + DJ[dir];
      if (ni < 0 || h <= ni || nj < 0 || w <= nj || s[ni][nj] == '#')
        continue;
      auto nd = dxy;
      if (ci == ni) {
        nd.first++;
      } else {
        nd.second++;
      }
      if (dist[ni][nj] <= nd)
        continue;
      dist[ni][nj] = nd;
      que.push({nd, {ni, nj}});
    }
  }
  auto [x, y] = dist[h - 1][w - 1];
  if (x == INF) {
    cout << "No\n";
  } else {
    cout << "Yes\n";
    cout << x << ' ' << y << '\n';
  }
}

int main() {
  std::cin.tie(nullptr);
  std::ios_base::sync_with_stdio(false);
  int T = 1;
  for (int t = 0; t < T; t++) {
    solve();
  }
  return 0;
}
0