結果

問題 No.2565 はじめてのおつかい
ユーザー Peach2587Peach2587
提出日時 2023-12-02 16:44:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 1,582 bytes
コンパイル時間 2,728 ms
コンパイル使用メモリ 189,656 KB
実行使用メモリ 16,640 KB
最終ジャッジ日時 2024-09-26 20:39:49
合計ジャッジ時間 7,314 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 198 ms
16,640 KB
testcase_04 AC 125 ms
16,512 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 79 ms
6,016 KB
testcase_07 AC 38 ms
5,376 KB
testcase_08 AC 40 ms
5,632 KB
testcase_09 AC 68 ms
5,760 KB
testcase_10 AC 48 ms
6,016 KB
testcase_11 AC 118 ms
10,624 KB
testcase_12 AC 22 ms
5,376 KB
testcase_13 AC 46 ms
5,504 KB
testcase_14 AC 85 ms
8,192 KB
testcase_15 AC 86 ms
7,424 KB
testcase_16 AC 81 ms
11,136 KB
testcase_17 AC 17 ms
5,376 KB
testcase_18 AC 20 ms
5,888 KB
testcase_19 AC 104 ms
9,600 KB
testcase_20 AC 94 ms
9,088 KB
testcase_21 AC 82 ms
9,088 KB
testcase_22 AC 45 ms
7,040 KB
testcase_23 AC 56 ms
7,168 KB
testcase_24 AC 11 ms
5,376 KB
testcase_25 AC 100 ms
9,344 KB
testcase_26 AC 52 ms
6,784 KB
testcase_27 AC 80 ms
9,600 KB
testcase_28 AC 101 ms
9,344 KB
testcase_29 AC 123 ms
11,392 KB
testcase_30 AC 93 ms
10,368 KB
testcase_31 AC 95 ms
9,344 KB
testcase_32 AC 50 ms
6,784 KB
testcase_33 AC 94 ms
10,112 KB
testcase_34 AC 102 ms
8,448 KB
testcase_35 AC 91 ms
11,008 KB
testcase_36 AC 99 ms
9,856 KB
testcase_37 AC 54 ms
7,040 KB
testcase_38 AC 91 ms
8,448 KB
testcase_39 AC 78 ms
7,424 KB
testcase_40 AC 106 ms
11,136 KB
testcase_41 AC 114 ms
11,776 KB
testcase_42 AC 57 ms
6,528 KB
testcase_43 AC 82 ms
8,064 KB
testcase_44 AC 42 ms
5,760 KB
testcase_45 AC 23 ms
5,376 KB
testcase_46 AC 96 ms
7,552 KB
testcase_47 AC 56 ms
5,376 KB
testcase_48 AC 51 ms
5,504 KB
testcase_49 AC 23 ms
5,376 KB
testcase_50 AC 66 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 42 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//#define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
#include <atcoder/modint>
#include <atcoder/dsu>
#include <boost/rational.hpp>
using namespace std;
using namespace atcoder;
using ll = long long;
using mint = modint998244353;
const double pi = 3.14159265359879323846264338327950288419;
const ll INF = 9 * 1e6;
using p = pair<ll, ll>;

int main() {
  int n, m; cin >> n >> m;
  map<int, vector<int>> mp;
  for(int i = 0; i < m; i++){
    int U, V; cin >> U >> V;
    mp[U-1].push_back(V-1);
  }
  vector<ll> dis_from_0(n, INF);
  dis_from_0[0] = 0;
  queue<int> q;
  q.push(0);
  while(!q.empty()){
    int v = q.front(); q.pop();
    for(auto nv : mp[v]){
      if(dis_from_0[nv] != INF) continue;
      dis_from_0[nv] = dis_from_0[v] + 1;
      q.push(nv);
    }
  }
  
  vector<ll> dis_from_n(n, INF);
  dis_from_n[n-1] = 0;
  q.push(n-1);
  while(!q.empty()){
    int v = q.front(); q.pop();
    for(auto nv : mp[v]){
      if(dis_from_n[nv] != INF) continue;
      dis_from_n[nv] = dis_from_n[v] + 1;
      q.push(nv);
    }
  }
  
  vector<ll> dis_from_n1(n, INF);
  dis_from_n1[n-2] = 0;
  q.push(n-2);
  while(!q.empty()){
    int v = q.front(); q.pop();
    for(auto nv : mp[v]){
      if(dis_from_n1[nv] != INF) continue;
      dis_from_n1[nv] = dis_from_n1[v] + 1;
      q.push(nv);
    }
  }
  
  //for(auto c : dis_from_n1) cerr << c << " ";
  ll zero_n_n1 = dis_from_0[n-1] + dis_from_n[n-2] + dis_from_n1[0],
     zero_n1_n = dis_from_0[n-2] + dis_from_n1[n-1] + dis_from_n[0];
  
  cout << (min(zero_n_n1, zero_n1_n) >= INF ? -1:min(zero_n_n1, zero_n1_n)) << endl;
}
0