結果

問題 No.1660 Matrix Exponentiation
ユーザー shinichishinichi
提出日時 2021-08-28 01:29:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 450 ms / 2,000 ms
コード長 630 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 198,960 KB
最終ジャッジ日時 2024-11-21 08:37:00
合計ジャッジ時間 5,004 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,684 KB
testcase_01 AC 41 ms
53,752 KB
testcase_02 AC 40 ms
55,320 KB
testcase_03 AC 42 ms
53,860 KB
testcase_04 AC 40 ms
54,244 KB
testcase_05 AC 40 ms
54,672 KB
testcase_06 AC 41 ms
54,324 KB
testcase_07 AC 42 ms
53,536 KB
testcase_08 AC 41 ms
54,004 KB
testcase_09 AC 65 ms
80,688 KB
testcase_10 AC 65 ms
81,404 KB
testcase_11 AC 42 ms
56,692 KB
testcase_12 AC 40 ms
54,248 KB
testcase_13 AC 40 ms
54,256 KB
testcase_14 AC 40 ms
54,264 KB
testcase_15 AC 48 ms
57,676 KB
testcase_16 AC 41 ms
54,680 KB
testcase_17 AC 42 ms
54,728 KB
testcase_18 AC 53 ms
59,256 KB
testcase_19 AC 242 ms
90,180 KB
testcase_20 AC 188 ms
89,976 KB
testcase_21 AC 200 ms
82,652 KB
testcase_22 AC 82 ms
83,072 KB
testcase_23 AC 153 ms
86,500 KB
testcase_24 AC 450 ms
198,960 KB
testcase_25 AC 164 ms
95,176 KB
testcase_26 AC 448 ms
197,212 KB
testcase_27 AC 149 ms
93,328 KB
testcase_28 AC 181 ms
90,344 KB
testcase_29 AC 363 ms
180,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys


N, K = map(int, input().split())
graph = defaultdict(list)
for _ in range(K):
    r, c = map(lambda x:int(x)-1, input().split())
    graph[r].append(c)

memo = [0] * (N+1)
seen = [False] * (N+1)
sys.setrecursionlimit(1000000)
def dfs(v):
    if memo[v]:
        return memo[v]
    seen[v] = True
    res = 1
    for next_v in graph[v]:
        if seen[next_v] and not memo[next_v]:
            print(-1)
            sys.exit()
        res = max(res, dfs(next_v)+1)
    memo[v] = res
    return res

for i in range(N):
    if memo[i]:
        continue
    dfs(i)
print(max(memo))


0