結果

問題 No.2565 はじめてのおつかい
ユーザー norikamenorikame
提出日時 2023-12-07 02:07:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 1,073 bytes
コンパイル時間 3,919 ms
コンパイル使用メモリ 267,652 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-09-27 01:56:44
合計ジャッジ時間 7,818 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 79 ms
14,208 KB
testcase_04 AC 68 ms
14,208 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 51 ms
5,632 KB
testcase_07 AC 27 ms
5,376 KB
testcase_08 AC 27 ms
5,376 KB
testcase_09 AC 47 ms
5,376 KB
testcase_10 AC 31 ms
5,504 KB
testcase_11 AC 74 ms
9,600 KB
testcase_12 AC 19 ms
5,376 KB
testcase_13 AC 31 ms
5,376 KB
testcase_14 AC 51 ms
7,552 KB
testcase_15 AC 55 ms
6,656 KB
testcase_16 AC 59 ms
12,032 KB
testcase_17 AC 13 ms
5,376 KB
testcase_18 AC 18 ms
6,784 KB
testcase_19 AC 63 ms
8,704 KB
testcase_20 AC 56 ms
8,192 KB
testcase_21 AC 53 ms
8,192 KB
testcase_22 AC 31 ms
6,656 KB
testcase_23 AC 35 ms
6,528 KB
testcase_24 AC 7 ms
5,376 KB
testcase_25 AC 52 ms
8,576 KB
testcase_26 AC 34 ms
6,144 KB
testcase_27 AC 53 ms
8,832 KB
testcase_28 AC 59 ms
8,448 KB
testcase_29 AC 75 ms
10,368 KB
testcase_30 AC 55 ms
9,600 KB
testcase_31 AC 57 ms
8,448 KB
testcase_32 AC 29 ms
6,400 KB
testcase_33 AC 53 ms
9,088 KB
testcase_34 AC 54 ms
7,552 KB
testcase_35 AC 59 ms
10,752 KB
testcase_36 AC 54 ms
9,088 KB
testcase_37 AC 33 ms
6,400 KB
testcase_38 AC 52 ms
7,680 KB
testcase_39 AC 49 ms
6,784 KB
testcase_40 AC 64 ms
10,240 KB
testcase_41 AC 69 ms
10,880 KB
testcase_42 AC 36 ms
5,888 KB
testcase_43 AC 48 ms
7,296 KB
testcase_44 AC 26 ms
5,376 KB
testcase_45 AC 15 ms
5,376 KB
testcase_46 AC 58 ms
6,784 KB
testcase_47 AC 41 ms
5,376 KB
testcase_48 AC 33 ms
5,376 KB
testcase_49 AC 19 ms
5,376 KB
testcase_50 AC 48 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 40 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;

using ll = long long;

#define rep(i, n) for (int i=0; i<(int)(n); ++(i))
#define rep3(i, m, n) for (int i=(m); (i)<(int)(n); ++(i))
#define repr(i, n) for (int i=(int)(n)-1; (i)>=0; --(i))
#define rep3r(i, m, n) for (int i=(int)(n)-1; (i)>=(int)(m); --(i))
#define all(x) (x).begin(), (x).end()

const int INF = (int)(1e9);

int main() {
	int n, m;
	cin >> n >> m;
	vector<vector<int>> g(n);
	rep(i, m) {
		int ui, vi;
		cin >> ui >> vi;
		--ui; --vi;
		g[ui].push_back(vi);
	}
	vector<vector<int>> dist(n, vector<int>(4, INF));
	queue<pair<int, int>> que;
	dist[0][0] = 0;
	que.emplace(0, 0);
	while (!que.empty()) {
		auto [vi, si] = que.front(); que.pop();
		int di = dist[vi][si], ndi = di + 1;
		for (const int& ti : g[vi]) {
			int tsi = si | (ti == n-1 ? 1 : ti == n-2 ? 2 : 0);
			if (dist[ti][tsi] <= ndi) continue;
			dist[ti][tsi] = ndi;
			que.emplace(ti, tsi);
		}
	}
	if (dist[0][3] == INF) cout << -1 << endl;
	else cout << dist[0][3] << endl;
	return 0;
}
0