結果

問題 No.1660 Matrix Exponentiation
ユーザー kotatsugamekotatsugame
提出日時 2021-08-27 22:04:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 644 ms
コンパイル使用メモリ 76,140 KB
実行使用メモリ 10,564 KB
最終ジャッジ日時 2024-11-21 02:28:41
合計ジャッジ時間 2,299 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 3 ms
7,240 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 4 ms
6,816 KB
testcase_10 AC 4 ms
6,880 KB
testcase_11 AC 3 ms
6,880 KB
testcase_12 AC 3 ms
6,820 KB
testcase_13 AC 3 ms
6,816 KB
testcase_14 AC 3 ms
6,820 KB
testcase_15 AC 4 ms
6,980 KB
testcase_16 AC 3 ms
6,976 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 3 ms
7,488 KB
testcase_19 AC 58 ms
8,548 KB
testcase_20 AC 39 ms
8,356 KB
testcase_21 AC 62 ms
7,768 KB
testcase_22 AC 4 ms
7,356 KB
testcase_23 AC 24 ms
7,804 KB
testcase_24 AC 75 ms
10,396 KB
testcase_25 AC 49 ms
8,088 KB
testcase_26 AC 76 ms
10,564 KB
testcase_27 AC 65 ms
10,036 KB
testcase_28 AC 72 ms
9,428 KB
testcase_29 AC 68 ms
9,892 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:9:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    9 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<queue>
using namespace std;
int N,M;
vector<int>G[1<<17];
int indeg[1<<17];
int dist[1<<17];
main()
{
	cin>>N>>M;
	for(int i=0;i<M;i++)
	{
		int a,b;cin>>a>>b;
		G[a-1].push_back(b-1);
		indeg[b-1]++;
	}
	queue<int>P;
	for(int i=0;i<N;i++)if(!indeg[i])
	{
		P.push(i);
	}
	int sz=0,mx=0;
	while(!P.empty())
	{
		int u=P.front();P.pop();
		sz++;
		if(mx<dist[u])mx=dist[u];
		for(int v:G[u])
		{
			if(dist[v]<dist[u]+1)dist[v]=dist[u]+1;
			if(!--indeg[v])P.push(v);
		}
	}
	if(sz<N)cout<<-1<<endl;
	else cout<<mx+1<<endl;
}
0