結果

問題 No.408 五輪ピック
ユーザー kotatsugamekotatsugame
提出日時 2021-01-10 07:21:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 110 ms / 5,000 ms
コード長 538 bytes
コンパイル時間 712 ms
コンパイル使用メモリ 73,448 KB
実行使用メモリ 53,980 KB
最終ジャッジ日時 2024-11-20 11:59:30
合計ジャッジ時間 3,731 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 107 ms
7,900 KB
testcase_06 AC 38 ms
27,532 KB
testcase_07 AC 56 ms
27,428 KB
testcase_08 AC 40 ms
10,912 KB
testcase_09 AC 43 ms
19,040 KB
testcase_10 AC 39 ms
27,084 KB
testcase_11 AC 37 ms
27,228 KB
testcase_12 AC 67 ms
29,812 KB
testcase_13 AC 105 ms
8,292 KB
testcase_14 AC 15 ms
20,608 KB
testcase_15 AC 104 ms
6,820 KB
testcase_16 AC 94 ms
10,788 KB
testcase_17 AC 59 ms
15,608 KB
testcase_18 AC 66 ms
25,772 KB
testcase_19 AC 72 ms
29,568 KB
testcase_20 AC 17 ms
10,420 KB
testcase_21 AC 12 ms
8,500 KB
testcase_22 AC 26 ms
8,868 KB
testcase_23 AC 110 ms
53,980 KB
testcase_24 AC 46 ms
53,820 KB
testcase_25 AC 41 ms
7,172 KB
testcase_26 AC 68 ms
21,696 KB
testcase_27 AC 42 ms
8,196 KB
testcase_28 AC 28 ms
6,820 KB
testcase_29 AC 28 ms
8,600 KB
testcase_30 AC 3 ms
6,816 KB
testcase_31 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:9:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    9 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<bitset>
#include<vector>
using namespace std;
int N,M;
int A[50000],B[50000];
bitset<20000>T[20000];
vector<int>G[20000];
main()
{
	cin>>N>>M;
	for(int i=0;i<M;i++)
	{
		cin>>A[i]>>B[i];
		A[i]--,B[i]--;
		G[A[i]].push_back(B[i]);
		G[B[i]].push_back(A[i]);
	}
	for(int u:G[0])for(int v:G[u])T[v][u]=1;
	bool fn=false;
	for(int i=0;i<M;i++)if(A[i]!=0&&B[i]!=0)
	{
		bitset<20000>X=T[A[i]],Y=T[B[i]];
		X[B[i]]=0;
		Y[A[i]]=0;
		if(X.any()&&Y.any()&&(X|Y).count()>=2)fn=true;
	}
	cout<<(fn?"YES":"NO")<<endl;
}
0