結果

問題 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
コンパイル時間 630 ms
コンパイル使用メモリ 72,696 KB
実行使用メモリ 54,120 KB
最終ジャッジ日時 2024-04-30 15:49:06
合計ジャッジ時間 3,717 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 3 ms
8,032 KB
testcase_04 AC 3 ms
6,948 KB
testcase_05 AC 107 ms
7,376 KB
testcase_06 AC 41 ms
33,564 KB
testcase_07 AC 61 ms
39,852 KB
testcase_08 AC 39 ms
11,420 KB
testcase_09 AC 46 ms
19,312 KB
testcase_10 AC 40 ms
27,280 KB
testcase_11 AC 40 ms
27,356 KB
testcase_12 AC 70 ms
39,932 KB
testcase_13 AC 105 ms
8,036 KB
testcase_14 AC 16 ms
18,780 KB
testcase_15 AC 105 ms
7,292 KB
testcase_16 AC 94 ms
10,132 KB
testcase_17 AC 58 ms
15,740 KB
testcase_18 AC 68 ms
23,864 KB
testcase_19 AC 80 ms
35,988 KB
testcase_20 AC 17 ms
8,568 KB
testcase_21 AC 11 ms
8,500 KB
testcase_22 AC 26 ms
10,580 KB
testcase_23 AC 110 ms
54,120 KB
testcase_24 AC 47 ms
53,836 KB
testcase_25 AC 40 ms
6,944 KB
testcase_26 AC 69 ms
25,276 KB
testcase_27 AC 41 ms
7,800 KB
testcase_28 AC 29 ms
8,416 KB
testcase_29 AC 27 ms
6,964 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,944 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