結果

問題 No.2565 はじめてのおつかい
ユーザー KudeKude
提出日時 2023-12-12 23:10:35
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 2,098 bytes
コンパイル時間 3,511 ms
コンパイル使用メモリ 277,604 KB
実行使用メモリ 26,496 KB
最終ジャッジ日時 2024-09-27 05:04:46
合計ジャッジ時間 6,880 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 123 ms
26,496 KB
testcase_04 AC 61 ms
26,496 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 42 ms
10,240 KB
testcase_07 AC 21 ms
6,912 KB
testcase_08 AC 21 ms
7,808 KB
testcase_09 AC 34 ms
9,216 KB
testcase_10 AC 27 ms
8,448 KB
testcase_11 AC 68 ms
16,896 KB
testcase_12 AC 13 ms
5,376 KB
testcase_13 AC 25 ms
8,192 KB
testcase_14 AC 44 ms
12,544 KB
testcase_15 AC 47 ms
11,776 KB
testcase_16 AC 61 ms
20,224 KB
testcase_17 AC 10 ms
5,888 KB
testcase_18 AC 17 ms
9,472 KB
testcase_19 AC 69 ms
15,360 KB
testcase_20 AC 49 ms
14,080 KB
testcase_21 AC 49 ms
14,208 KB
testcase_22 AC 27 ms
10,496 KB
testcase_23 AC 31 ms
10,624 KB
testcase_24 AC 7 ms
5,376 KB
testcase_25 AC 49 ms
14,464 KB
testcase_26 AC 30 ms
9,856 KB
testcase_27 AC 48 ms
15,232 KB
testcase_28 AC 55 ms
14,848 KB
testcase_29 AC 76 ms
18,048 KB
testcase_30 AC 59 ms
16,384 KB
testcase_31 AC 51 ms
14,720 KB
testcase_32 AC 28 ms
9,856 KB
testcase_33 AC 62 ms
15,616 KB
testcase_34 AC 52 ms
13,440 KB
testcase_35 AC 62 ms
18,176 KB
testcase_36 AC 51 ms
15,616 KB
testcase_37 AC 34 ms
10,368 KB
testcase_38 AC 46 ms
13,440 KB
testcase_39 AC 42 ms
11,520 KB
testcase_40 AC 67 ms
17,920 KB
testcase_41 AC 78 ms
19,072 KB
testcase_42 AC 30 ms
9,600 KB
testcase_43 AC 41 ms
12,544 KB
testcase_44 AC 21 ms
7,936 KB
testcase_45 AC 12 ms
6,144 KB
testcase_46 AC 51 ms
12,416 KB
testcase_47 AC 31 ms
8,192 KB
testcase_48 AC 26 ms
8,192 KB
testcase_49 AC 13 ms
5,376 KB
testcase_50 AC 35 ms
8,704 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 20 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
namespace {
#pragma GCC diagnostic ignored "-Wunused-function"
#include<atcoder/all>
#pragma GCC diagnostic warning "-Wunused-function"
using namespace std;
using namespace atcoder;
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--)
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; }
template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; }
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

constexpr int INF = 1001001001;
template <int k = 2, class T>  // cost in [0, k)
vector<int> kBFS(const vector<vector<pair<int, T>>>& g, int s = 0) {
  static_assert(k >= 1);
  const int n = g.size();
  vector<int> dist(n, INF);
  vector<int> q[2 * k];
  dist[s] = 0;
  q[0].emplace_back(s);
  for (int dist_cur = 0, ptr = 0;;) {
    const auto qb = q + ptr;
    while (!qb[0].empty()) {
      int u = qb[0].back();
      qb[0].pop_back();
      if (dist[u] != dist_cur) continue;
      for (auto [v, c] : g[u]) {
        int nd = dist_cur + c;
        if (nd < dist[v]) {
          dist[v] = nd;
          qb[c].emplace_back(v);
        }
      }
    }
    do {
      dist_cur++;
      ptr++;
      if (ptr == 2 * k) return dist;
    } while (q[ptr].empty());
    if (ptr > k) {
      for (int i = ptr; i < 2 * k; i++) {
        swap(q[i], q[i - ptr]);
      }
      ptr = 0;
    }
  }
}

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n, m;
  cin >> n >> m;
  vector<vector<P>> to(4 * n);
  rep(_, m) {
    int u, v;
    cin >> u >> v;
    u--, v--;
    rep(s, 4) to[n * s + u].emplace_back(n * s + v, 1);
  }
  rep(s0, 2) to[n * s0 + n - 2].emplace_back(n * (s0 + 2) + n - 2, 0);
  rep(s1, 2) to[n * (2 * s1) + n - 1].emplace_back(n * (2 * s1 + 1) + n - 1, 0);
  int ans = kBFS(to)[3 * n];
  if (ans == INF) ans = -1;
  cout << ans << '\n';
}
0