結果

問題 No.1660 Matrix Exponentiation
ユーザー rlangevinrlangevin
提出日時 2023-10-04 20:15:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 818 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 93,268 KB
最終ジャッジ日時 2024-07-26 14:52:28
合計ジャッジ時間 4,485 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,168 KB
testcase_01 AC 42 ms
54,812 KB
testcase_02 AC 43 ms
54,872 KB
testcase_03 AC 41 ms
54,800 KB
testcase_04 AC 43 ms
54,468 KB
testcase_05 WA -
testcase_06 AC 42 ms
55,264 KB
testcase_07 WA -
testcase_08 AC 43 ms
54,556 KB
testcase_09 AC 65 ms
77,428 KB
testcase_10 AC 64 ms
77,932 KB
testcase_11 AC 47 ms
63,128 KB
testcase_12 AC 43 ms
54,136 KB
testcase_13 AC 43 ms
53,760 KB
testcase_14 AC 43 ms
55,408 KB
testcase_15 AC 44 ms
55,716 KB
testcase_16 AC 43 ms
54,848 KB
testcase_17 AC 43 ms
54,432 KB
testcase_18 AC 47 ms
56,984 KB
testcase_19 AC 184 ms
87,708 KB
testcase_20 AC 157 ms
89,132 KB
testcase_21 AC 140 ms
80,792 KB
testcase_22 AC 72 ms
77,928 KB
testcase_23 AC 128 ms
84,456 KB
testcase_24 AC 203 ms
92,904 KB
testcase_25 AC 125 ms
90,432 KB
testcase_26 AC 202 ms
93,132 KB
testcase_27 AC 47 ms
63,304 KB
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

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)
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