結果

問題 No.1660 Matrix Exponentiation
ユーザー 👑 rin204rin204
提出日時 2021-08-27 21:48:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 547 ms / 2,000 ms
コード長 698 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 184,192 KB
最終ジャッジ日時 2024-05-17 02:37:52
合計ジャッジ時間 6,181 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,340 KB
testcase_01 AC 38 ms
53,200 KB
testcase_02 AC 37 ms
52,608 KB
testcase_03 AC 36 ms
52,592 KB
testcase_04 AC 37 ms
52,892 KB
testcase_05 AC 39 ms
53,060 KB
testcase_06 AC 36 ms
52,196 KB
testcase_07 AC 36 ms
53,492 KB
testcase_08 AC 38 ms
53,088 KB
testcase_09 AC 49 ms
65,256 KB
testcase_10 AC 48 ms
65,616 KB
testcase_11 AC 43 ms
62,420 KB
testcase_12 AC 37 ms
52,564 KB
testcase_13 AC 37 ms
53,012 KB
testcase_14 AC 37 ms
52,892 KB
testcase_15 AC 44 ms
55,328 KB
testcase_16 AC 39 ms
52,760 KB
testcase_17 AC 39 ms
54,684 KB
testcase_18 AC 47 ms
56,396 KB
testcase_19 AC 246 ms
85,724 KB
testcase_20 AC 192 ms
84,104 KB
testcase_21 AC 204 ms
81,012 KB
testcase_22 AC 75 ms
75,068 KB
testcase_23 AC 156 ms
81,812 KB
testcase_24 AC 547 ms
184,192 KB
testcase_25 AC 128 ms
85,292 KB
testcase_26 AC 496 ms
183,908 KB
testcase_27 AC 131 ms
86,868 KB
testcase_28 AC 312 ms
88,296 KB
testcase_29 AC 385 ms
172,792 KB
権限があれば一括ダウンロードができます

ソースコード

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()
        if dist[npos] != -1:
            dist[pos] = max(dist[pos], dist[npos] + 1)
            continue
        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