結果

問題 No.2565 はじめてのおつかい
ユーザー achapiachapi
提出日時 2023-12-02 15:38:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 737 bytes
コンパイル時間 2,253 ms
コンパイル使用メモリ 213,464 KB
実行使用メモリ 11,832 KB
最終ジャッジ日時 2024-09-26 19:04:48
合計ジャッジ時間 6,348 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,812 KB
testcase_03 AC 77 ms
11,832 KB
testcase_04 AC 65 ms
11,828 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 49 ms
6,940 KB
testcase_07 AC 26 ms
6,940 KB
testcase_08 AC 26 ms
6,940 KB
testcase_09 AC 45 ms
6,944 KB
testcase_10 AC 29 ms
6,940 KB
testcase_11 AC 67 ms
8,368 KB
testcase_12 AC 19 ms
6,940 KB
testcase_13 AC 30 ms
6,940 KB
testcase_14 AC 48 ms
6,940 KB
testcase_15 AC 53 ms
6,940 KB
testcase_16 AC 57 ms
9,796 KB
testcase_17 AC 13 ms
6,940 KB
testcase_18 AC 16 ms
6,940 KB
testcase_19 AC 62 ms
7,660 KB
testcase_20 AC 55 ms
7,108 KB
testcase_21 AC 55 ms
7,268 KB
testcase_22 AC 31 ms
6,940 KB
testcase_23 AC 35 ms
6,944 KB
testcase_24 AC 7 ms
6,940 KB
testcase_25 AC 54 ms
7,432 KB
testcase_26 AC 33 ms
6,944 KB
testcase_27 AC 53 ms
7,756 KB
testcase_28 AC 59 ms
7,304 KB
testcase_29 AC 67 ms
8,952 KB
testcase_30 AC 58 ms
8,228 KB
testcase_31 AC 56 ms
7,504 KB
testcase_32 AC 32 ms
6,940 KB
testcase_33 AC 56 ms
7,912 KB
testcase_34 AC 57 ms
6,944 KB
testcase_35 AC 57 ms
8,856 KB
testcase_36 AC 57 ms
7,900 KB
testcase_37 AC 35 ms
6,940 KB
testcase_38 AC 55 ms
6,944 KB
testcase_39 AC 47 ms
6,944 KB
testcase_40 AC 66 ms
8,768 KB
testcase_41 AC 68 ms
9,356 KB
testcase_42 AC 34 ms
6,940 KB
testcase_43 AC 48 ms
6,940 KB
testcase_44 AC 25 ms
6,944 KB
testcase_45 AC 15 ms
6,940 KB
testcase_46 AC 54 ms
6,944 KB
testcase_47 AC 40 ms
6,940 KB
testcase_48 AC 31 ms
6,940 KB
testcase_49 AC 18 ms
6,944 KB
testcase_50 AC 51 ms
6,944 KB
testcase_51 AC 2 ms
6,944 KB
testcase_52 AC 43 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
	int N, M;
	cin >> N >> M;
	vector<vector<long long>> G(N);
	for (int i = 0; i < M; i++){
		int u, v;
		cin >> u >> v;
		u--;
		v--;
		G[u].push_back(v);
	}
	long long ans = 1e18;
	vector<vector<long long>> D;
	for (int i : {0, N - 2, N - 1}){
		queue<int> q;
		vector<long long> d(N, 1e18);
		q.push(i);
		d[i] = 0;
		while (!q.empty()){
			int v = q.front();
			q.pop();
			for (int i : G[v]){
				if (d[i] == 1e18){
					d[i] = d[v] + 1;
					q.push(i);
				}
			}
		}
		D.push_back(d);
	}
	ans = min(ans, D[0][N - 2] + D[1][N - 1] + D[2][0]);
	ans = min(ans, D[0][N - 1] + D[2][N - 2] + D[1][0]);
	if (ans != 1e18){
		cout << ans << endl;
	} else {
		cout << -1 << endl;
	}
}
0