結果

問題 No.2565 はじめてのおつかい
ユーザー kemunikukemuniku
提出日時 2023-12-02 15:43:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 415 ms / 2,000 ms
コード長 467 bytes
コンパイル時間 473 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 116,700 KB
最終ジャッジ日時 2024-09-26 19:10:42
合計ジャッジ時間 12,152 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 50
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
G = [[] for i in range(N)]
for i in range(M):
    u,v = map(int,input().split())
    u-=1
    v-=1
    G[u].append(v)

stack = [(0,False,False,0)]
alr = set()
for i,f1,f2,c in stack:
    if i == 0 and f1 and f2:
        print(c)
        exit()
    for j in G[i]:
        x = (j,f1|(j==N-2),f2|(j==N-1))
        if x not in alr:
            alr.add(x)
            y = (j,f1|(j==N-2),f2|(j==N-1),c+1)
            stack.append(y)
print(-1)
0