結果

問題 No.1660 Matrix Exponentiation
ユーザー puznekopuzneko
提出日時 2021-11-26 00:30:14
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,419 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 136,772 KB
最終ジャッジ日時 2024-06-28 17:08:53
合計ジャッジ時間 7,583 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,600 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 43 ms
52,480 KB
testcase_04 AC 42 ms
51,968 KB
testcase_05 AC 42 ms
52,224 KB
testcase_06 AC 42 ms
52,224 KB
testcase_07 AC 42 ms
51,840 KB
testcase_08 AC 41 ms
51,840 KB
testcase_09 AC 93 ms
82,944 KB
testcase_10 AC 93 ms
82,688 KB
testcase_11 AC 53 ms
62,208 KB
testcase_12 AC 42 ms
52,096 KB
testcase_13 AC 43 ms
52,224 KB
testcase_14 AC 43 ms
52,096 KB
testcase_15 AC 77 ms
69,120 KB
testcase_16 AC 45 ms
53,120 KB
testcase_17 AC 55 ms
60,928 KB
testcase_18 AC 88 ms
74,752 KB
testcase_19 AC 281 ms
109,824 KB
testcase_20 AC 200 ms
99,328 KB
testcase_21 AC 1,461 ms
114,560 KB
testcase_22 AC 101 ms
80,768 KB
testcase_23 AC 160 ms
89,984 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

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]:
                        if not check[j]:
                            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