結果

問題 No.408 五輪ピック
ユーザー chocoruskchocorusk
提出日時 2018-11-03 10:32:26
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 236 ms / 5,000 ms
コード長 1,243 bytes
コンパイル時間 895 ms
コンパイル使用メモリ 99,924 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-04-30 20:40:44
合計ジャッジ時間 5,104 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,248 KB
testcase_01 AC 43 ms
53,120 KB
testcase_02 AC 43 ms
53,248 KB
testcase_03 AC 43 ms
53,120 KB
testcase_04 AC 42 ms
52,992 KB
testcase_05 AC 65 ms
53,632 KB
testcase_06 AC 130 ms
53,888 KB
testcase_07 AC 138 ms
53,760 KB
testcase_08 AC 62 ms
53,760 KB
testcase_09 AC 66 ms
53,760 KB
testcase_10 AC 133 ms
53,760 KB
testcase_11 AC 129 ms
53,760 KB
testcase_12 AC 151 ms
53,760 KB
testcase_13 AC 66 ms
53,888 KB
testcase_14 AC 71 ms
53,376 KB
testcase_15 AC 65 ms
53,504 KB
testcase_16 AC 68 ms
53,760 KB
testcase_17 AC 71 ms
53,888 KB
testcase_18 AC 76 ms
54,016 KB
testcase_19 AC 93 ms
54,016 KB
testcase_20 AC 88 ms
53,632 KB
testcase_21 AC 67 ms
53,504 KB
testcase_22 AC 120 ms
53,760 KB
testcase_23 AC 76 ms
54,016 KB
testcase_24 AC 105 ms
54,016 KB
testcase_25 AC 98 ms
54,016 KB
testcase_26 AC 236 ms
54,272 KB
testcase_27 AC 184 ms
53,888 KB
testcase_28 AC 63 ms
53,760 KB
testcase_29 AC 69 ms
53,504 KB
testcase_30 AC 43 ms
53,120 KB
testcase_31 AC 43 ms
53,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;

int main()
{
	int n, m;
	cin>>n>>m;
	int a[50000], b[50000];
	vector<int> g[20000];
	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]);
	}
	bitset<20000> bs[20000];
	for(auto p:g[0]){
		for(auto y:g[p]){
			if(y==0) continue;
			bs[y][p]=1;
		}
	}
	for(int i=0; i<m; i++){
		if(a[i]==0 || b[i]==0) continue;
		bool nuo1=0, nuo2=0;
		if(bs[a[i]][b[i]]) nuo1=1, bs[a[i]][b[i]]=0;
		if(bs[b[i]][a[i]]) nuo2=1, bs[b[i]][a[i]]=0;
		int c1=bs[a[i]].count(), c2=bs[b[i]].count();
		if(c1==0 || c2==0){
			if(nuo1) bs[a[i]][b[i]]=1;
			if(nuo2) bs[b[i]][a[i]]=1;
			continue;
		}
		if(c1>=2 || c2>=2){
			cout<<"YES"<<endl;
			return 0;
		}
		if((bs[a[i]]&bs[b[i]]).count()==0){
			cout<<"YES"<<endl;
			return 0;
		}
		if(nuo1) bs[a[i]][b[i]]=1;
		if(nuo2) bs[b[i]][a[i]]=1;
	}
	cout<<"NO"<<endl;
    return 0;
}
0