結果

問題 No.2565 はじめてのおつかい
ユーザー ゆにぽけゆにぽけ
提出日時 2023-12-02 15:00:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 1,080 bytes
コンパイル時間 1,697 ms
コンパイル使用メモリ 134,672 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-09-26 17:53:04
合計ジャッジ時間 4,726 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
6,400 KB
testcase_01 AC 5 ms
6,528 KB
testcase_02 AC 6 ms
6,400 KB
testcase_03 AC 49 ms
11,264 KB
testcase_04 AC 32 ms
11,136 KB
testcase_05 AC 5 ms
6,528 KB
testcase_06 AC 29 ms
7,680 KB
testcase_07 AC 16 ms
7,296 KB
testcase_08 AC 17 ms
7,296 KB
testcase_09 AC 26 ms
7,680 KB
testcase_10 AC 20 ms
7,424 KB
testcase_11 AC 40 ms
8,960 KB
testcase_12 AC 12 ms
6,912 KB
testcase_13 AC 20 ms
7,296 KB
testcase_14 AC 30 ms
8,320 KB
testcase_15 AC 32 ms
7,936 KB
testcase_16 AC 30 ms
9,472 KB
testcase_17 AC 10 ms
7,040 KB
testcase_18 AC 12 ms
7,552 KB
testcase_19 AC 35 ms
8,576 KB
testcase_20 AC 31 ms
8,576 KB
testcase_21 AC 30 ms
8,576 KB
testcase_22 AC 18 ms
7,808 KB
testcase_23 AC 22 ms
7,808 KB
testcase_24 AC 7 ms
6,784 KB
testcase_25 AC 31 ms
8,576 KB
testcase_26 AC 20 ms
7,808 KB
testcase_27 AC 28 ms
8,576 KB
testcase_28 AC 33 ms
8,576 KB
testcase_29 AC 40 ms
9,216 KB
testcase_30 AC 31 ms
8,832 KB
testcase_31 AC 33 ms
8,576 KB
testcase_32 AC 17 ms
7,680 KB
testcase_33 AC 29 ms
8,704 KB
testcase_34 AC 32 ms
8,448 KB
testcase_35 AC 31 ms
9,344 KB
testcase_36 AC 31 ms
8,704 KB
testcase_37 AC 20 ms
7,808 KB
testcase_38 AC 28 ms
8,192 KB
testcase_39 AC 28 ms
8,064 KB
testcase_40 AC 35 ms
9,088 KB
testcase_41 AC 37 ms
9,344 KB
testcase_42 AC 21 ms
7,552 KB
testcase_43 AC 26 ms
8,064 KB
testcase_44 AC 16 ms
7,296 KB
testcase_45 AC 10 ms
7,040 KB
testcase_46 AC 34 ms
8,192 KB
testcase_47 AC 22 ms
7,296 KB
testcase_48 AC 20 ms
7,424 KB
testcase_49 AC 12 ms
6,784 KB
testcase_50 AC 25 ms
7,296 KB
testcase_51 AC 5 ms
6,400 KB
testcase_52 AC 20 ms
7,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<cstring>
#include<cassert>
#include<cmath>
#include<ctime>
#include<iomanip>
#include<numeric>
#include<stack>
#include<queue>
#include<map>
#include<unordered_map>
#include<set>
#include<unordered_set>
#include<bitset>
#include<random>
#include<functional>
#include<utility>
using namespace std;
int N,M;
vector<int> G[1 << 17];
int dp[1 << 17][1 << 2];
void solve()
{
	cin >> N >> M;
	for(int i = 0;i < M;i++)
	{
		int u,v;
		cin >> u >> v;
		u--; v--;
		G[u].push_back(v);
	}
	for(int i = 0;i < N;i++)for(int j = 0;j < 1 << 2;j++) dp[i][j] = -1;
	dp[0][0] = 0;
	queue<pair<int,int>> Q;
	Q.push(make_pair(0,0));
	while(!Q.empty())
	{
		auto [u,s] = Q.front();
		Q.pop();

		for(int v:G[u])
		{
			int ns = s;
			if(v == N-2) ns |= 1 << 0;
			if(v == N-1) ns |= 1 << 1;
			if(dp[v][ns] < 0) 
			{
				dp[v][ns] = dp[u][s] + 1;
				Q.push(make_pair(v,ns));
			}
		}
	}
	cout << dp[0][3] << endl;
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int tt = 1;
	/* cin >> tt; */
	while(tt--) solve();
}
0