結果

問題 No.1023 Cyclic Tour
ユーザー kotatsugamekotatsugame
提出日時 2020-04-15 12:38:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,197 bytes
コンパイル時間 1,014 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 11,612 KB
最終ジャッジ日時 2024-10-01 18:42:35
合計ジャッジ時間 10,710 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,528 KB
testcase_01 AC 5 ms
6,528 KB
testcase_02 AC 4 ms
6,656 KB
testcase_03 AC 4 ms
6,528 KB
testcase_04 AC 68 ms
7,040 KB
testcase_05 AC 65 ms
7,040 KB
testcase_06 AC 73 ms
7,168 KB
testcase_07 AC 69 ms
7,040 KB
testcase_08 AC 77 ms
9,648 KB
testcase_09 AC 74 ms
9,496 KB
testcase_10 AC 71 ms
9,504 KB
testcase_11 AC 78 ms
9,664 KB
testcase_12 AC 77 ms
10,452 KB
testcase_13 AC 72 ms
10,140 KB
testcase_14 AC 73 ms
10,260 KB
testcase_15 AC 75 ms
10,276 KB
testcase_16 AC 135 ms
11,612 KB
testcase_17 AC 139 ms
11,612 KB
testcase_18 AC 142 ms
11,544 KB
testcase_19 AC 137 ms
11,552 KB
testcase_20 AC 127 ms
8,892 KB
testcase_21 AC 128 ms
8,856 KB
testcase_22 AC 132 ms
9,552 KB
testcase_23 AC 141 ms
9,800 KB
testcase_24 AC 152 ms
10,976 KB
testcase_25 AC 130 ms
8,772 KB
testcase_26 AC 130 ms
8,880 KB
testcase_27 AC 126 ms
8,600 KB
testcase_28 AC 155 ms
10,692 KB
testcase_29 AC 142 ms
11,076 KB
testcase_30 AC 148 ms
10,716 KB
testcase_31 AC 134 ms
10,332 KB
testcase_32 AC 171 ms
10,792 KB
testcase_33 AC 149 ms
10,464 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 135 ms
9,160 KB
testcase_37 AC 140 ms
10,060 KB
testcase_38 AC 140 ms
10,784 KB
testcase_39 AC 143 ms
9,912 KB
testcase_40 AC 139 ms
10,040 KB
testcase_41 AC 143 ms
10,036 KB
testcase_42 AC 130 ms
8,776 KB
testcase_43 AC 137 ms
10,808 KB
testcase_44 AC 66 ms
7,424 KB
testcase_45 AC 79 ms
11,356 KB
testcase_46 AC 75 ms
11,360 KB
testcase_47 AC 66 ms
7,040 KB
testcase_48 AC 130 ms
8,800 KB
testcase_49 AC 132 ms
9,184 KB
testcase_50 AC 129 ms
8,804 KB
testcase_51 AC 129 ms
8,928 KB
testcase_52 AC 135 ms
8,740 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:37:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   37 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<queue>
using namespace std;
#include<vector>
struct UF{
	int n;
	vector<int>parent,rank;
	UF(int n_=0):n(n_),parent(n_),rank(n_,1)
	{
		for(int i=0;i<n_;i++)parent[i]=i;
	}
	int find(int a){return parent[a]!=a?parent[a]=find(parent[a]):a;}
	bool same(int a,int b){return find(a)==find(b);}
	bool unite(int a,int b)
	{
		a=find(a),b=find(b);
		if(a==b)return false;
		if(rank[a]<rank[b])
		{
			parent[a]=b;
			rank[b]+=rank[a];
		}
		else
		{
			parent[b]=a;
			rank[a]+=rank[b];
		}
		return true;
	}
	int size(int a){return rank[find(a)];}
};
int N,M;
vector<pair<int,int> >edge;
vector<int>G[1<<17];
int cnt[1<<17];
main()
{
	cin>>N>>M;
	UF uf(N);
	for(int i=0;i<M;i++)
	{
		int a,b,c;cin>>a>>b>>c;
		a--,b--;
		if(c==1)uf.unite(a,b);
		else edge.push_back(make_pair(a,b));
	}
	for(pair<int,int>p:edge)
	{
		int u=uf.find(p.first);
		int v=uf.find(p.second);
		G[u].push_back(v);
		cnt[v]++;
	}
	queue<int>P;
	int vc=0;
	for(int i=0;i<N;i++)if(uf.find(i)==i)
	{
		vc++;
		if(cnt[i]==0)P.push(i);
	}
	int pc=0;
	while(!P.empty())
	{
		pc++;
		int u=P.front();P.pop();
		for(int v:G[u])if(--cnt[v]==0)P.push(v);
	}
	cout<<(vc==pc?"No":"Yes")<<endl;
}
0