結果

問題 No.1660 Matrix Exponentiation
ユーザー 👑 rin204rin204
提出日時 2021-08-27 21:47:26
言語 PyPy3
(7.3.15)
結果
MLE  
(最新)
TLE  
(最初)
実行時間 -
コード長 593 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 1,021,740 KB
最終ジャッジ日時 2024-11-21 01:33:37
合計ジャッジ時間 14,093 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,572 KB
testcase_01 MLE -
testcase_02 AC 39 ms
52,644 KB
testcase_03 AC 38 ms
53,232 KB
testcase_04 AC 39 ms
53,384 KB
testcase_05 AC 39 ms
53,112 KB
testcase_06 AC 39 ms
53,224 KB
testcase_07 AC 38 ms
52,344 KB
testcase_08 AC 39 ms
52,416 KB
testcase_09 AC 51 ms
65,088 KB
testcase_10 AC 51 ms
65,224 KB
testcase_11 AC 46 ms
62,664 KB
testcase_12 AC 39 ms
53,144 KB
testcase_13 AC 38 ms
52,752 KB
testcase_14 AC 40 ms
54,128 KB
testcase_15 AC 52 ms
61,984 KB
testcase_16 AC 41 ms
52,828 KB
testcase_17 AC 41 ms
53,160 KB
testcase_18 AC 70 ms
70,288 KB
testcase_19 AC 347 ms
85,700 KB
testcase_20 AC 247 ms
84,404 KB
testcase_21 AC 974 ms
83,752 KB
testcase_22 AC 80 ms
75,540 KB
testcase_23 AC 184 ms
82,564 KB
testcase_24 TLE -
testcase_25 AC 130 ms
85,164 KB
testcase_26 TLE -
testcase_27 AC 134 ms
87,124 KB
testcase_28 TLE -
testcase_29 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 9)

n, k = map(int, input().split())
edges = [[] for _ in range(n)]
for _ in range(k):
    r, c = map(int, input().split())
    r -= 1
    c -= 1
    edges[r].append(c)
    
dist = [-1] * n
used = [False] * n

def dfs(pos):
    dist[pos] = max(dist[pos], 0)
    for npos in edges[pos]:
        if used[npos]:
            print(-1)
            exit()
        dfs(npos)
        dist[pos] = max(dist[pos], dist[npos] + 1)

for i in range(n):
    if dist[i] != -1:
        continue
    used[i] = True
    dfs(i)
    used[i] = False
    
print(max(dist) + 1)
0