結果

問題 No.1660 Matrix Exponentiation
ユーザー ygd.ygd.
提出日時 2021-08-29 11:47:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,333 bytes
コンパイル時間 552 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 96,852 KB
最終ジャッジ日時 2024-11-22 04:43:30
合計ジャッジ時間 4,040 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
53,504 KB
testcase_01 AC 46 ms
53,632 KB
testcase_02 AC 45 ms
53,248 KB
testcase_03 AC 48 ms
53,632 KB
testcase_04 WA -
testcase_05 AC 47 ms
53,888 KB
testcase_06 AC 46 ms
54,144 KB
testcase_07 AC 46 ms
53,888 KB
testcase_08 AC 47 ms
53,504 KB
testcase_09 AC 46 ms
53,760 KB
testcase_10 WA -
testcase_11 AC 53 ms
62,336 KB
testcase_12 AC 47 ms
53,760 KB
testcase_13 AC 47 ms
53,632 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 138 ms
96,852 KB
testcase_26 WA -
testcase_27 AC 53 ms
62,592 KB
testcase_28 AC 166 ms
91,520 KB
testcase_29 AC 127 ms
85,760 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 v in deg:
        dp[v] = 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