結果

問題 No.1660 Matrix Exponentiation
ユーザー ygd.ygd.
提出日時 2021-08-29 11:50:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 1,366 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,908 KB
実行使用メモリ 96,424 KB
最終ジャッジ日時 2024-05-01 21:50:13
合計ジャッジ時間 3,707 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,076 KB
testcase_01 AC 43 ms
54,632 KB
testcase_02 AC 43 ms
55,012 KB
testcase_03 AC 43 ms
54,568 KB
testcase_04 AC 43 ms
54,404 KB
testcase_05 AC 43 ms
54,188 KB
testcase_06 AC 43 ms
55,116 KB
testcase_07 AC 43 ms
54,996 KB
testcase_08 AC 44 ms
54,248 KB
testcase_09 AC 42 ms
55,028 KB
testcase_10 AC 67 ms
81,968 KB
testcase_11 AC 49 ms
64,016 KB
testcase_12 AC 43 ms
54,936 KB
testcase_13 AC 43 ms
54,864 KB
testcase_14 AC 43 ms
55,036 KB
testcase_15 AC 46 ms
55,976 KB
testcase_16 AC 43 ms
54,740 KB
testcase_17 AC 44 ms
55,048 KB
testcase_18 AC 47 ms
56,092 KB
testcase_19 AC 177 ms
88,168 KB
testcase_20 AC 153 ms
88,380 KB
testcase_21 AC 135 ms
80,280 KB
testcase_22 AC 72 ms
80,740 KB
testcase_23 AC 118 ms
85,068 KB
testcase_24 AC 201 ms
92,588 KB
testcase_25 AC 135 ms
96,424 KB
testcase_26 AC 201 ms
92,556 KB
testcase_27 AC 48 ms
62,576 KB
testcase_28 AC 185 ms
91,444 KB
testcase_29 AC 126 ms
85,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from collections import defaultdict 

def main():
    n,k = map(int,input().split()); MOD = pow(10,9) + 7
    if k == 0:
        print(1);exit()
    #A = [[0]*n for _ in range(n)]
    G = [[] for _ in range(n)]
    deg = [0]*n
    dic = {}
    for _ in range(k):
        r,c = map(int,input().split())
        r -= 1; c -= 1
        if r == c: #対角成分に1があったら無理
            print(-1);exit()
        G[r].append(c)
        deg[c] += 1
    
    TP = topological(G,deg)
    #print(TP)
    if len(TP) < n:
        print(-1);exit()
    
    dp = [0]*n
    for i in range(n):
        if deg[i] == 0:
            dp[i] = 1
    for v in TP:
        for u in G[v]:
            dp[u] = max(dp[u], dp[v] + 1)
    #print(dp)
    ans = max(dp)
    print(ans)

    
    

# degは入次数を記録したもの
def topological(graph, deg):
    start = []
    n = len(deg)
    for i in range(n):
        if deg[i] == 0: #入次数がないものがスタート
            start.append(i)
    topo = []
    while start:
        v = start.pop()
        topo.append(v)
        for u in graph[v]:
            deg[u] -= 1
            if deg[u] == 0:
                start.append(u)
    #トポロジカルソートできない場合は配列がnよりも短くなる。
    return topo


if __name__ == "__main__":
    main()
0