結果

問題 No.1660 Matrix Exponentiation
ユーザー rlangevinrlangevin
提出日時 2023-10-05 00:08:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 864 bytes
コンパイル時間 462 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 92,928 KB
最終ジャッジ日時 2024-07-26 14:55:14
合計ジャッジ時間 3,394 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,888 KB
testcase_01 AC 39 ms
54,272 KB
testcase_02 AC 41 ms
53,888 KB
testcase_03 AC 38 ms
53,504 KB
testcase_04 AC 38 ms
53,760 KB
testcase_05 AC 42 ms
53,760 KB
testcase_06 AC 46 ms
53,760 KB
testcase_07 AC 38 ms
53,504 KB
testcase_08 AC 37 ms
53,760 KB
testcase_09 AC 57 ms
77,184 KB
testcase_10 AC 56 ms
77,440 KB
testcase_11 AC 42 ms
62,080 KB
testcase_12 AC 37 ms
53,376 KB
testcase_13 AC 38 ms
53,632 KB
testcase_14 AC 38 ms
53,888 KB
testcase_15 AC 40 ms
55,040 KB
testcase_16 AC 39 ms
54,400 KB
testcase_17 AC 39 ms
54,016 KB
testcase_18 AC 40 ms
55,936 KB
testcase_19 AC 142 ms
87,424 KB
testcase_20 AC 122 ms
88,712 KB
testcase_21 AC 110 ms
80,992 KB
testcase_22 AC 63 ms
77,312 KB
testcase_23 AC 104 ms
84,908 KB
testcase_24 AC 145 ms
92,928 KB
testcase_25 AC 103 ms
90,396 KB
testcase_26 AC 142 ms
92,872 KB
testcase_27 AC 43 ms
61,824 KB
testcase_28 AC 149 ms
92,160 KB
testcase_29 AC 104 ms
85,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *
def topsort(G):
    Q = deque()
    N = len(G)
    count = [0] * N

    for u in range(N):
        for v in G[u]:
            count[v] += 1

    for u in range(N):
        if count[u] == 0:
            Q.append(u)
    anslst = []
    while Q:
        u = Q.pop()
        anslst.append(u)
        for v in G[u]:
            count[v] -= 1
            if count[v] == 0:
                Q.append(v)
    return anslst


N, K = map(int, input().split())   
G = [[] for i in range(N)]
for i in range(K):
    a, b = map(int, input().split())
    a, b = a - 1, b - 1
    if a == b:
        print(-1)
        exit()
    G[a].append(b)
    
A = topsort(G)
if len(A) != N:
    print(-1)
    exit()
    
dp = [0] * N
for a in A:
    for u in G[a]:
        dp[u] = max(dp[u], dp[a] + 1)
        
print(max(dp) + 1)
0