結果

問題 No.1563 Same Degree
ユーザー kotatsugamekotatsugame
提出日時 2021-06-29 20:04:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 592 ms
コンパイル使用メモリ 69,376 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-25 22:28:15
合計ジャッジ時間 2,566 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 34 ms
5,376 KB
testcase_02 AC 33 ms
5,376 KB
testcase_03 AC 32 ms
5,376 KB
testcase_04 AC 35 ms
5,376 KB
testcase_05 AC 34 ms
5,376 KB
testcase_06 AC 37 ms
5,376 KB
testcase_07 AC 37 ms
5,376 KB
testcase_08 AC 38 ms
5,376 KB
testcase_09 AC 37 ms
5,376 KB
testcase_10 AC 36 ms
5,376 KB
testcase_11 AC 14 ms
5,376 KB
testcase_12 AC 28 ms
5,376 KB
testcase_13 AC 78 ms
5,376 KB
testcase_14 AC 90 ms
5,376 KB
testcase_15 AC 60 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:5:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    5 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;
int T,N,M;
main()
{
	cin>>T;
	for(;T--;)
	{
		cin>>N>>M;
		vector<int>deg(N);
		for(int i=0;i<M;i++)
		{
			int a,b;cin>>a>>b;
			a--,b--;
			deg[a]++,deg[b]++;
		}
		vector<int>ex(M+1);
		bool ok=false;
		for(int i=0;i<N;i++)
		{
			if(ex[deg[i]])ok=true;
			ex[deg[i]]=true;
		}
		cout<<(ok?"Yes":"No")<<endl;
	}
}
0