結果

問題 No.1660 Matrix Exponentiation
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-08-28 13:02:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 458 ms / 2,000 ms
コード長 833 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 191,804 KB
最終ジャッジ日時 2024-11-21 20:55:02
合計ジャッジ時間 4,717 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 38 ms
52,608 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 42 ms
52,224 KB
testcase_07 AC 38 ms
52,132 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 66 ms
81,200 KB
testcase_10 AC 66 ms
81,280 KB
testcase_11 AC 59 ms
78,208 KB
testcase_12 AC 39 ms
52,096 KB
testcase_13 AC 39 ms
52,224 KB
testcase_14 AC 40 ms
52,352 KB
testcase_15 AC 48 ms
55,040 KB
testcase_16 AC 40 ms
52,480 KB
testcase_17 AC 41 ms
52,992 KB
testcase_18 AC 54 ms
61,568 KB
testcase_19 AC 248 ms
89,524 KB
testcase_20 AC 204 ms
90,500 KB
testcase_21 AC 208 ms
81,608 KB
testcase_22 AC 102 ms
87,680 KB
testcase_23 AC 173 ms
85,736 KB
testcase_24 AC 457 ms
191,804 KB
testcase_25 AC 181 ms
98,048 KB
testcase_26 AC 458 ms
190,080 KB
testcase_27 AC 134 ms
85,860 KB
testcase_28 AC 191 ms
92,416 KB
testcase_29 AC 154 ms
85,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 7)
n, m = map(int, input().split())
G = [[] for i in range(n)]
d = [0] * n
for _ in range(m):
    u, v = map(int, input().split())
    G[u - 1].append(v - 1)
    d[v - 1] += 1
def topological_sort(G):
    s = []
    for i in range(n):
        if d[i] == 0: s.append(i)
    ans = []
    while s:
        u = s.pop()
        ans.append(u)
        for v in G[u]:
            d[v] -= 1
            if d[v] == 0: s.append(v)
    if len(ans) != n: return -1
    return ans
if topological_sort(G) == -1: exit(print(-1)) 
visit = [False] * n
dp = [0] * n
def dfs(now):
    if visit[now]:
        return dp[now]
    visit[now] = True
    res = 0
    for i in G[now]:
        res = max(res, dfs(i) + 1)
    dp[now] = res
    return res
ans = 0
for i in range(n):
    ans = max(ans, dfs(i))
print(ans + 1)
0