結果

問題 No.1660 Matrix Exponentiation
ユーザー vwxyzvwxyz
提出日時 2024-08-15 10:32:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 514 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 28,672 KB
最終ジャッジ日時 2024-08-15 10:32:59
合計ジャッジ時間 6,435 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 23 ms
10,624 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 AC 24 ms
10,752 KB
testcase_05 AC 24 ms
10,624 KB
testcase_06 AC 24 ms
10,624 KB
testcase_07 AC 23 ms
10,624 KB
testcase_08 AC 24 ms
10,624 KB
testcase_09 AC 101 ms
23,424 KB
testcase_10 AC 98 ms
23,168 KB
testcase_11 AC 90 ms
23,296 KB
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 24 ms
10,752 KB
testcase_14 AC 24 ms
10,752 KB
testcase_15 WA -
testcase_16 AC 24 ms
10,624 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 68 ms
18,688 KB
testcase_23 WA -
testcase_24 AC 496 ms
28,672 KB
testcase_25 AC 439 ms
24,064 KB
testcase_26 AC 473 ms
28,672 KB
testcase_27 AC 369 ms
25,600 KB
testcase_28 AC 470 ms
25,728 KB
testcase_29 AC 420 ms
25,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
graph=[[] for x in range(N)]
degree=[0]*N
for k in range(K):
    r,c=map(int,input().split())
    r-=1;c-=1
    graph[r].append(c)
    degree[c]+=1
queue=[]
inf=1<<30
dp=[-inf]*N
for x in range(N):
    if degree[x]==0:
        queue.append(x)
        dp[x]=0
while queue:
    x=queue.pop()
    for y in graph[x]:
        degree[y]-=1
        if degree[y]==0:
            queue.append(y)
            dp[y]=max(dp[y],dp[x]+1)
if sum(degree):
    ans=-1
else:
    ans=max(dp)+1
print(ans)
0