結果

問題 No.2910 単体ホモロジー入門
ユーザー temuge25temuge25
提出日時 2024-10-04 21:43:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 523 bytes
コンパイル時間 1,627 ms
コンパイル使用メモリ 177,300 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-04 21:43:06
合計ジャッジ時間 2,646 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 1 ms
6,816 KB
testcase_09 AC 1 ms
6,820 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 1 ms
6,816 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 1 ms
6,816 KB
testcase_28 AC 1 ms
6,816 KB
testcase_29 WA -
testcase_30 AC 2 ms
6,816 KB
testcase_31 AC 1 ms
6,816 KB
testcase_32 WA -
testcase_33 AC 2 ms
6,816 KB
testcase_34 AC 1 ms
6,816 KB
testcase_35 AC 2 ms
6,820 KB
testcase_36 AC 2 ms
6,816 KB
testcase_37 AC 2 ms
6,816 KB
testcase_38 AC 1 ms
6,816 KB
testcase_39 AC 2 ms
6,816 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 2 ms
6,816 KB
testcase_43 WA -
testcase_44 AC 1 ms
6,816 KB
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define ll long long
void solve(){
	int n,m;
	cin>>n>>m;
	vector<int> i(m),j(m);
	vector<set<int>> g(n);
	for(int a=0;a<m;a++){
		cin>>i[a]>>j[a];
		g[i[a]].insert(j[a]);
		g[j[a]].insert(i[a]);
	}
	int v[3];
	cin>>v[0]>>v[1]>>v[2];
	if(g[v[0]].find(v[1])!=g[v[0]].end() and g[v[1]].find(v[2])!=g[v[1]].end() and g[v[2]].find(v[0])!=g[v[2]].end()){
		cout<<"No";
	}else{
		cout<<"Yes";
	}
	cout<<endl;
}
signed main(){
	int t=1;
//	cin>>t;
	for(int a=0;a<t;a++){
		solve();
	}
}
0