結果

問題 No.1660 Matrix Exponentiation
ユーザー convexineqconvexineq
提出日時 2021-08-28 21:21:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 477 bytes
コンパイル時間 762 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 90,988 KB
最終ジャッジ日時 2024-11-21 21:29:09
合計ジャッジ時間 4,428 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 WA -
testcase_06 AC 38 ms
51,456 KB
testcase_07 WA -
testcase_08 AC 39 ms
52,016 KB
testcase_09 AC 56 ms
72,960 KB
testcase_10 AC 57 ms
72,448 KB
testcase_11 AC 44 ms
60,800 KB
testcase_12 AC 38 ms
52,096 KB
testcase_13 AC 39 ms
52,096 KB
testcase_14 AC 40 ms
52,096 KB
testcase_15 AC 48 ms
59,520 KB
testcase_16 AC 41 ms
52,480 KB
testcase_17 AC 41 ms
52,736 KB
testcase_18 AC 54 ms
60,544 KB
testcase_19 AC 195 ms
84,352 KB
testcase_20 AC 156 ms
84,740 KB
testcase_21 AC 167 ms
80,000 KB
testcase_22 AC 79 ms
78,464 KB
testcase_23 AC 133 ms
82,612 KB
testcase_24 AC 207 ms
88,956 KB
testcase_25 AC 169 ms
90,988 KB
testcase_26 AC 204 ms
89,160 KB
testcase_27 AC 44 ms
61,440 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