結果

問題 No.1660 Matrix Exponentiation
ユーザー convexineqconvexineq
提出日時 2021-08-28 21:21:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 477 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 81,852 KB
実行使用メモリ 91,252 KB
最終ジャッジ日時 2024-05-01 16:18:26
合計ジャッジ時間 3,563 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,480 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 WA -
testcase_06 AC 36 ms
52,096 KB
testcase_07 WA -
testcase_08 AC 37 ms
52,120 KB
testcase_09 AC 51 ms
72,832 KB
testcase_10 AC 52 ms
72,832 KB
testcase_11 AC 41 ms
61,440 KB
testcase_12 AC 36 ms
52,352 KB
testcase_13 AC 36 ms
52,480 KB
testcase_14 AC 37 ms
52,224 KB
testcase_15 AC 46 ms
59,264 KB
testcase_16 AC 38 ms
52,864 KB
testcase_17 AC 38 ms
52,736 KB
testcase_18 AC 48 ms
60,672 KB
testcase_19 AC 168 ms
84,548 KB
testcase_20 AC 136 ms
84,676 KB
testcase_21 AC 138 ms
80,128 KB
testcase_22 AC 71 ms
78,976 KB
testcase_23 AC 108 ms
82,688 KB
testcase_24 AC 161 ms
89,344 KB
testcase_25 AC 148 ms
91,252 KB
testcase_26 AC 162 ms
89,572 KB
testcase_27 AC 39 ms
61,184 KB
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
g = [[] for _ in range(n)]
deg = [0]*n
for _ in range(k):
    a,b = map(int,input().split())
    if a == b:
        print(-1)
        exit()
    g[a-1].append(b-1)
    deg[b-1] += 1

dp = [0]*n
q = [i for i in range(n) if deg[i]==0]
for i in q: dp[i] = 1
while q:
    v = q.pop()
    for c in g[v]:
        dp[c] = max(dp[c],dp[v]+1)
        deg[c] -= 1
        if deg[c] == 0:
            q.append(c)
    
print(-1 if min(dp) == -1 else max(dp))
0