結果

問題 No.2565 はじめてのおつかい
ユーザー wgrapewgrape
提出日時 2024-10-18 14:03:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 935 bytes
コンパイル時間 5,536 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 92,384 KB
最終ジャッジ日時 2024-10-18 14:03:42
合計ジャッジ時間 11,246 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,808 KB
testcase_01 AC 35 ms
54,088 KB
testcase_02 AC 39 ms
54,060 KB
testcase_03 AC 187 ms
92,384 KB
testcase_04 AC 142 ms
91,704 KB
testcase_05 AC 38 ms
54,884 KB
testcase_06 AC 126 ms
79,856 KB
testcase_07 AC 96 ms
78,316 KB
testcase_08 AC 100 ms
79,320 KB
testcase_09 AC 119 ms
79,208 KB
testcase_10 AC 110 ms
79,692 KB
testcase_11 AC 167 ms
85,996 KB
testcase_12 AC 92 ms
76,576 KB
testcase_13 AC 108 ms
78,456 KB
testcase_14 AC 156 ms
82,796 KB
testcase_15 AC 140 ms
81,584 KB
testcase_16 AC 122 ms
85,116 KB
testcase_17 AC 72 ms
77,136 KB
testcase_18 AC 78 ms
79,044 KB
testcase_19 AC 151 ms
83,280 KB
testcase_20 AC 138 ms
82,216 KB
testcase_21 AC 165 ms
82,508 KB
testcase_22 AC 91 ms
80,072 KB
testcase_23 AC 111 ms
80,068 KB
testcase_24 AC 66 ms
77,288 KB
testcase_25 AC 134 ms
82,860 KB
testcase_26 AC 109 ms
80,464 KB
testcase_27 AC 117 ms
82,244 KB
testcase_28 AC 149 ms
82,956 KB
testcase_29 AC 154 ms
86,108 KB
testcase_30 AC 154 ms
82,592 KB
testcase_31 AC 152 ms
83,140 KB
testcase_32 AC 93 ms
79,264 KB
testcase_33 AC 119 ms
82,404 KB
testcase_34 AC 150 ms
82,332 KB
testcase_35 AC 130 ms
83,796 KB
testcase_36 AC 162 ms
83,740 KB
testcase_37 AC 118 ms
80,596 KB
testcase_38 AC 115 ms
81,064 KB
testcase_39 AC 146 ms
81,540 KB
testcase_40 AC 132 ms
83,028 KB
testcase_41 AC 182 ms
85,364 KB
testcase_42 AC 113 ms
79,896 KB
testcase_43 AC 109 ms
80,952 KB
testcase_44 AC 102 ms
79,476 KB
testcase_45 AC 72 ms
77,364 KB
testcase_46 AC 133 ms
81,532 KB
testcase_47 AC 124 ms
78,740 KB
testcase_48 AC 110 ms
79,164 KB
testcase_49 AC 85 ms
76,856 KB
testcase_50 AC 118 ms
78,568 KB
testcase_51 AC 35 ms
55,464 KB
testcase_52 AC 106 ms
76,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
G = [[] for i in range(N)]

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

from collections import deque
def get_dist(start, goal, G, N):
    q = deque([])
    q.append([start, 0])
    visited = [False] * N
    visited[start] = True
    while q:
        v, d = q.popleft()
        for child in G[v]:
            if visited[child]:
                continue
            visited[child] = True
            if child == goal:
                return d + 1
            q.append([child, d + 1])
    return -1

D = [0, N - 2, N - 1]

routes = ((0,1,2,0),(0,2,1,0))
INF = 1 << 60
ans = INF
for route in routes:
    d = 0
    for i in range(len(route) - 1):
        dist = get_dist(D[route[i]], D[route[i + 1]], G, N)
        if dist == -1:
            break
        d += dist
    else:
        ans = min(ans, d)
        
if ans == INF:
    print(-1)
else:
    print(ans)









0