結果

問題 No.2565 はじめてのおつかい
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-12-02 14:35:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 656 ms / 2,000 ms
コード長 648 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 212,864 KB
最終ジャッジ日時 2024-09-26 16:55:08
合計ジャッジ時間 19,991 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,632 KB
testcase_01 AC 43 ms
53,760 KB
testcase_02 AC 47 ms
53,760 KB
testcase_03 AC 656 ms
212,864 KB
testcase_04 AC 393 ms
212,864 KB
testcase_05 AC 43 ms
53,376 KB
testcase_06 AC 378 ms
109,312 KB
testcase_07 AC 229 ms
93,824 KB
testcase_08 AC 274 ms
102,784 KB
testcase_09 AC 338 ms
104,960 KB
testcase_10 AC 295 ms
105,344 KB
testcase_11 AC 619 ms
151,936 KB
testcase_12 AC 155 ms
84,480 KB
testcase_13 AC 289 ms
102,016 KB
testcase_14 AC 470 ms
129,152 KB
testcase_15 AC 480 ms
122,624 KB
testcase_16 AC 381 ms
161,024 KB
testcase_17 AC 128 ms
88,960 KB
testcase_18 AC 148 ms
97,792 KB
testcase_19 AC 499 ms
141,952 KB
testcase_20 AC 459 ms
136,832 KB
testcase_21 AC 422 ms
138,112 KB
testcase_22 AC 212 ms
108,800 KB
testcase_23 AC 313 ms
117,376 KB
testcase_24 AC 97 ms
78,976 KB
testcase_25 AC 442 ms
138,496 KB
testcase_26 AC 308 ms
113,920 KB
testcase_27 AC 337 ms
135,936 KB
testcase_28 AC 454 ms
140,416 KB
testcase_29 AC 558 ms
159,872 KB
testcase_30 AC 357 ms
137,472 KB
testcase_31 AC 473 ms
140,160 KB
testcase_32 AC 215 ms
107,904 KB
testcase_33 AC 352 ms
136,960 KB
testcase_34 AC 443 ms
132,736 KB
testcase_35 AC 383 ms
147,072 KB
testcase_36 AC 478 ms
144,896 KB
testcase_37 AC 305 ms
115,968 KB
testcase_38 AC 324 ms
125,056 KB
testcase_39 AC 427 ms
121,856 KB
testcase_40 AC 400 ms
146,560 KB
testcase_41 AC 498 ms
156,928 KB
testcase_42 AC 339 ms
111,872 KB
testcase_43 AC 330 ms
124,288 KB
testcase_44 AC 265 ms
102,912 KB
testcase_45 AC 133 ms
88,704 KB
testcase_46 AC 495 ms
125,440 KB
testcase_47 AC 308 ms
99,584 KB
testcase_48 AC 298 ms
102,784 KB
testcase_49 AC 153 ms
84,864 KB
testcase_50 AC 334 ms
105,472 KB
testcase_51 AC 43 ms
53,888 KB
testcase_52 AC 216 ms
94,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
INF=pow(2,61)-1
N,M=map(int,input().split())
gr=[[set() for i in range(4)] for i in range(N)]
for i in range(M):
    u,v=map(int,input().split())
    for j in range(4):
        if v==N-1:
            gr[u-1][j].add((v-1,j|1))
        elif v==N:
            gr[u-1][j].add((v-1,j|2))
        else:
            gr[u-1][j].add((v-1,j))
pos=deque([(0,0)])
ans=[[INF]*4 for i in range(N)]
ans[0][0]=0
while len(pos)>0:
    a,b=pos.popleft()
    for i,j in gr[a][b]:
        if ans[i][j]>ans[a][b]+1:
            ans[i][j]=ans[a][b]+1
            pos.append((i,j))
if ans[0][3]>=INF:
    print(-1)
else:
    print(ans[0][3])
0