結果

問題 No.1023 Cyclic Tour
ユーザー kmjpkmjp
提出日時 2020-04-10 23:24:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,435 bytes
コンパイル時間 2,613 ms
コンパイル使用メモリ 218,088 KB
実行使用メモリ 121,200 KB
最終ジャッジ日時 2024-09-16 01:09:01
合計ジャッジ時間 13,988 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
104,432 KB
testcase_01 AC 82 ms
104,436 KB
testcase_02 AC 83 ms
104,560 KB
testcase_03 AC 84 ms
104,432 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 132 ms
108,016 KB
testcase_09 AC 151 ms
114,032 KB
testcase_10 AC 148 ms
114,032 KB
testcase_11 AC 156 ms
114,544 KB
testcase_12 AC 163 ms
115,816 KB
testcase_13 AC 158 ms
115,132 KB
testcase_14 AC 160 ms
115,184 KB
testcase_15 AC 161 ms
115,312 KB
testcase_16 AC 223 ms
116,892 KB
testcase_17 AC 219 ms
117,152 KB
testcase_18 AC 220 ms
116,128 KB
testcase_19 AC 230 ms
116,128 KB
testcase_20 AC 153 ms
112,628 KB
testcase_21 AC 155 ms
112,876 KB
testcase_22 AC 178 ms
114,164 KB
testcase_23 AC 185 ms
114,464 KB
testcase_24 AC 211 ms
116,512 KB
testcase_25 AC 156 ms
112,628 KB
testcase_26 AC 155 ms
112,756 KB
testcase_27 AC 151 ms
112,240 KB
testcase_28 AC 198 ms
115,872 KB
testcase_29 AC 201 ms
116,764 KB
testcase_30 AC 197 ms
116,000 KB
testcase_31 AC 196 ms
115,620 KB
testcase_32 AC 203 ms
116,256 KB
testcase_33 AC 197 ms
115,872 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 165 ms
113,136 KB
testcase_37 AC 193 ms
115,140 KB
testcase_38 AC 209 ms
116,132 KB
testcase_39 AC 181 ms
114,592 KB
testcase_40 AC 185 ms
114,848 KB
testcase_41 AC 187 ms
114,720 KB
testcase_42 AC 143 ms
106,348 KB
testcase_43 AC 154 ms
108,432 KB
testcase_44 AC 124 ms
110,964 KB
testcase_45 AC 177 ms
121,200 KB
testcase_46 AC 190 ms
119,028 KB
testcase_47 AC 125 ms
111,088 KB
testcase_48 AC 155 ms
113,392 KB
testcase_49 AC 154 ms
113,136 KB
testcase_50 AC 154 ms
113,260 KB
testcase_51 AC 141 ms
106,484 KB
testcase_52 AC 141 ms
106,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

class SCC {
public:
	static const int MV = 2025000;
	vector<vector<int> > SC; int NV,GR[MV];
private:
	vector<int> E[MV], RE[MV], NUM; int vis[MV];
public:
	void init(int NV) { this->NV=NV; for(int i=0;i<NV;i++) { E[i].clear(); RE[i].clear();}}
	void add_edge(int x,int y) { E[x].push_back(y); RE[y].push_back(x); }
	void dfs(int cu) { vis[cu]=1; for(int i=0;i<E[cu].size();i++) if(!vis[E[cu][i]]) dfs(E[cu][i]); NUM.push_back(cu); }
	void revdfs(int cu, int ind) { int i; vis[cu]=1; GR[cu]=ind; SC[ind].push_back(cu);
		FOR(i,RE[cu].size()) if(!vis[RE[cu][i]]) revdfs(RE[cu][i],ind);}
	void scc() {
		int c=0,i; SC.clear(); SC.resize(NV); NUM.clear();
		assert(NV);
		FOR(i,NV) vis[i]=0; FOR(i,NV) if(!vis[i]) dfs(i); FOR(i,NV) vis[i]=0;
		for(int i=NUM.size()-1;i>=0;i--) if(!vis[NUM[i]]){
			SC[c].clear(); revdfs(NUM[i],c); sort(SC[c].begin(),SC[c].end()); c++;
		}
		SC.resize(c);
	}
};

template<int um> class UF {
	public:
	vector<int> par,rank;
	UF() {rank=vector<int>(um,0); for(int i=0;i<um;i++) par.push_back(i);}
	int operator[](int x) {return (par[x]==x)?(x):(par[x] = operator[](par[x]));}
	int operator()(int x,int y) {
		if((x=operator[](x))==(y=operator[](y))) return x;
		if(rank[x]>rank[y]) return par[x]=y;
		rank[x]+=rank[x]==rank[y]; return par[y]=x;
	}
};
UF<500000> uf;

SCC scc;

int N,M;
vector<pair<int,int>> BE;
vector<int> E[101010];

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>M;
	scc.init(N);
	FOR(i,M) {
		cin>>x>>y>>j;
		if(j==1) {
			if(uf[x-1]==uf[y-1]) _P("Yes\n");
			uf(x-1,y-1);
		}
		else {
			BE.push_back({x-1,y-1});
		}
	}
	
	FORR(e,BE) {
		if(uf[e.first]==uf[e.second]) return _P("Yes\n");
		scc.add_edge(uf[e.first],uf[e.second]);
	}
	
	scc.scc();
	if(scc.SC.size()!=N) return _P("Yes\n");
	_P("No\n");
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0