結果

問題 No.2565 はじめてのおつかい
ユーザー gabriel55_gabriel55_
提出日時 2023-12-02 16:02:30
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 2,911 bytes
コンパイル時間 4,658 ms
コンパイル使用メモリ 269,524 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2024-09-26 19:43:23
合計ジャッジ時間 7,876 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 50
権限があれば一括ダウンロードができます

ソースコード

diff #

#if !__INCLUDE_LEVEL__
#include __FILE__

int main(void){
   ll n, m;
   cin >> n >> m;
   vector v(n, vector<ll>());
   rep(i,m) {
      ll a, b;
      cin >> a >> b;
      a--; b--;
      v[a].emplace_back(b);
   }
   vector<P> dist(n, {inf, 0}), distnn1(n, {inf, 0}), distn1n(n, {inf, 0});
   dist[0] = {0, 1};
   auto bfs = [&](ll st, vector<P> &y) -> void {
      queue<ll> que;
      que.emplace(st);
      while(!que.empty()) {
         ll x = que.front();
         que.pop();
         for(auto &nx : v[x]) {
            if(y[nx].fi < y[x].fi + 1) continue;
            else if(y[nx].fi == y[x].fi + 1) {
               y[nx].se += y[x].se;
               continue;
            }
            y[nx].fi = y[x].fi + 1;
            y[nx].se = y[x].se;
            que.emplace(nx);
         }
      }
   };
   bfs(0, dist);
   distnn1[n-1] = dist[n-1];
   distn1n[n-2] = dist[n-2];
   bfs(n-1, distnn1);
   bfs(n-2, distn1n);
   vector<P> distn1(n, {inf, 0}), distn11(n, {inf, 0});
   distn1[n-1] = distn1n[n-1];
   distn11[n-2] = distnn1[n-2];
   bfs(n-1, distn1);
   bfs(n-2, distn11);
   debug(dist, distnn1, distn1n, distn1, distn11);
   if(distn1[0].fi == distn11[0].fi) {
      if(distn1[0].fi == inf) {
         cout << -1 << '\n';
         return 0;
      }
      cout << distn1[0].fi << '\n';
      return 0;
   }
   if(distn1[0].fi < distn11[0].fi) {
      swap(distn1[0], distn11[0]);
   }
   cout << distn11[0].fi << '\n';
}

/*---------------------------------------------------------------------------------------------------
      ○______
       ||      |
       ||   ●   |
       ||      |
        || ̄ ̄ ̄ ̄ ̄
       ||  君が代は
   ∧__,,∧||  千代に八千代に
  ( `・ω・||    さざれ石の巌となりて
   ヽ  つ0     こけのむすまで
   し―-J
---------------------------------------------------------------------------------------------------*/

#else
#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll = long long;
using ull = unsigned long long;
using ldb = long double;
using P = pair<ll, ll>;
#define fi first
#define se second
#define m_99(i,a,b) for (ll i = a, i##_range = (b); i < i##_range; i++)
#define REP(i,a,b) m_99(i,a,b)
#define rep(i,a) m_99(i,0,a)
template <class T> bool chmin(T& a, const T& b) { return a > b ? a = b, true : false; }
template <class T> bool chmax(T& a, const T& b) { return a < b ? a = b, true : false; }
#ifdef _DEBUG
#include <debug_print.hpp>
#define debug(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#define debug(...) (static_cast<void>(0))
#endif
struct initialise { initialise() { cin.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; }__INI__;
const ll inf = 1LL << 60;
const ll dx[4] = {-1, 1, 0, 0}, dy[4] = {0, 0, -1, 1};
#endif
0