結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 209 ms
16,512 KB
testcase_04 AC 122 ms
16,512 KB
testcase_05 WA -
testcase_06 AC 79 ms
6,944 KB
testcase_07 AC 40 ms
6,940 KB
testcase_08 AC 42 ms
6,940 KB
testcase_09 AC 69 ms
6,944 KB
testcase_10 AC 48 ms
6,944 KB
testcase_11 AC 123 ms
10,624 KB
testcase_12 AC 24 ms
6,944 KB
testcase_13 AC 47 ms
6,940 KB
testcase_14 AC 85 ms
8,192 KB
testcase_15 AC 86 ms
7,424 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 119 ms
11,264 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 101 ms
8,448 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 83 ms
7,424 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 57 ms
6,944 KB
testcase_43 WA -
testcase_44 AC 44 ms
6,944 KB
testcase_45 AC 24 ms
6,940 KB
testcase_46 AC 97 ms
7,552 KB
testcase_47 AC 56 ms
6,944 KB
testcase_48 AC 49 ms
6,940 KB
testcase_49 AC 24 ms
6,944 KB
testcase_50 AC 66 ms
6,940 KB
testcase_51 AC 2 ms
6,940 KB
testcase_52 AC 44 ms
6,944 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 * 1e18;
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);
    }
  }
  
  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