結果

問題 No.2565 はじめてのおつかい
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-06 18:15:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 557 bytes
コンパイル時間 526 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 101,840 KB
最終ジャッジ日時 2024-09-06 18:15:59
合計ジャッジ時間 11,307 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,372 KB
testcase_01 AC 36 ms
52,432 KB
testcase_02 AC 36 ms
52,216 KB
testcase_03 AC 208 ms
101,840 KB
testcase_04 AC 163 ms
101,272 KB
testcase_05 AC 37 ms
53,056 KB
testcase_06 AC 153 ms
80,512 KB
testcase_07 AC 118 ms
77,632 KB
testcase_08 AC 127 ms
79,144 KB
testcase_09 AC 145 ms
78,924 KB
testcase_10 AC 137 ms
79,632 KB
testcase_11 AC 210 ms
87,944 KB
testcase_12 AC 103 ms
77,160 KB
testcase_13 AC 138 ms
78,596 KB
testcase_14 AC 194 ms
84,304 KB
testcase_15 AC 168 ms
83,636 KB
testcase_16 AC 145 ms
85,300 KB
testcase_17 AC 81 ms
77,280 KB
testcase_18 AC 84 ms
79,180 KB
testcase_19 AC 179 ms
84,776 KB
testcase_20 AC 168 ms
85,300 KB
testcase_21 AC 155 ms
83,692 KB
testcase_22 AC 119 ms
80,364 KB
testcase_23 AC 131 ms
80,996 KB
testcase_24 AC 87 ms
76,956 KB
testcase_25 AC 179 ms
86,652 KB
testcase_26 AC 128 ms
80,620 KB
testcase_27 AC 151 ms
84,132 KB
testcase_28 AC 186 ms
85,124 KB
testcase_29 AC 204 ms
88,080 KB
testcase_30 AC 164 ms
84,756 KB
testcase_31 AC 192 ms
85,176 KB
testcase_32 AC 132 ms
80,700 KB
testcase_33 AC 167 ms
85,640 KB
testcase_34 AC 191 ms
86,320 KB
testcase_35 AC 159 ms
84,732 KB
testcase_36 AC 187 ms
85,824 KB
testcase_37 AC 131 ms
80,920 KB
testcase_38 AC 195 ms
84,768 KB
testcase_39 AC 175 ms
83,748 KB
testcase_40 AC 178 ms
85,980 KB
testcase_41 AC 191 ms
87,512 KB
testcase_42 AC 132 ms
80,484 KB
testcase_43 AC 161 ms
84,104 KB
testcase_44 AC 141 ms
79,336 KB
testcase_45 AC 106 ms
77,248 KB
testcase_46 AC 182 ms
83,900 KB
testcase_47 AC 137 ms
78,536 KB
testcase_48 AC 137 ms
79,448 KB
testcase_49 AC 101 ms
77,276 KB
testcase_50 AC 143 ms
78,556 KB
testcase_51 AC 37 ms
53,444 KB
testcase_52 AC 118 ms
76,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
e=[[] for i in range(n)]
for i in range(m):
	a,b=map(int,input().split())
	a-=1
	b-=1
	e[a]+=[b]
X=10**10
v=[X]*n
v[0]=0
q=[0]
for s in q:
	for t in e[s]:
		if v[t]==X:
			v[t]=v[s]+1
			q+=[t]
stot1=v[n-2]
stot2=v[n-1]
v=[X]*n
v[n-2]=0
q=[n-2]
for s in q:
	for t in e[s]:
		if v[t]==X:
			v[t]=v[s]+1
			q+=[t]
t1tos=v[0]
t1tot2=v[n-1]
v=[X]*n
v[n-1]=0
q=[n-1]
for s in q:
	for t in e[s]:
		if v[t]==X:
			v[t]=v[s]+1
			q+=[t]
t2tos=v[0]
t2tot1=v[n-2]
ans=min(stot1+t1tot2+t2tos,stot2+t2tot1+t1tos)
print(ans if ans<X else -1)
0