結果

問題 No.1660 Matrix Exponentiation
ユーザー puznekopuzneko
提出日時 2021-11-26 00:33:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 1,373 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 116,736 KB
最終ジャッジ日時 2024-06-28 17:13:23
合計ジャッジ時間 3,914 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,352 KB
testcase_01 AC 34 ms
52,480 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 AC 33 ms
52,224 KB
testcase_04 AC 35 ms
52,224 KB
testcase_05 AC 32 ms
51,968 KB
testcase_06 AC 33 ms
52,224 KB
testcase_07 AC 35 ms
51,840 KB
testcase_08 AC 34 ms
52,192 KB
testcase_09 AC 75 ms
82,688 KB
testcase_10 AC 74 ms
82,604 KB
testcase_11 AC 42 ms
62,336 KB
testcase_12 AC 35 ms
52,096 KB
testcase_13 AC 35 ms
51,968 KB
testcase_14 AC 35 ms
52,352 KB
testcase_15 AC 47 ms
63,232 KB
testcase_16 AC 38 ms
53,248 KB
testcase_17 AC 34 ms
52,480 KB
testcase_18 AC 47 ms
64,384 KB
testcase_19 AC 168 ms
109,568 KB
testcase_20 AC 153 ms
98,964 KB
testcase_21 AC 146 ms
114,432 KB
testcase_22 AC 86 ms
80,856 KB
testcase_23 AC 139 ms
90,112 KB
testcase_24 AC 199 ms
116,480 KB
testcase_25 AC 148 ms
114,176 KB
testcase_26 AC 201 ms
116,608 KB
testcase_27 AC 96 ms
116,608 KB
testcase_28 AC 115 ms
115,968 KB
testcase_29 AC 126 ms
116,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
n, m, *indata = map(int, stdin.read().split())
offset = 0
g = [[] for i in range(n+1)]
for i in range(m):
    s, t = indata[offset + 2*i],indata[offset + 2*i+1]
    g[s].append(t)

check = [False for i in range(n+1)]
visited = [False for i in range(n+1)]
for i in range(1,n+1):
    if not check[i]:
        que = [(i,0)]
        while que:
            now, inout = que.pop()
            if inout == 0:
                if not check[now]:
                    check[now] = True
                    que.append((now,1))
                    visited[now] = True
                    for j in g[now]:
                        if visited[j]:
                            print(-1)
                            exit()
                        que.append((j,0))
            else:
                visited[now] = False

dp = [0 for i in range(n+1)]
check = [False for i in range(n+1)]
for i in range(1,n+1):
    if not check[i]:
        que = [(i,0)]
        while que:
            now, inout = que.pop()
            if inout == 0:
                if not check[now]:
                    check[now] = True
                    que.append((now,1))
                    for j in g[now]:
                        que.append((j,0))
            else:
                for j in g[now]:
                    dp[now] = max(dp[now],dp[j]+1)

ans = max(dp) + 1
print("{}".format(ans))
0