結果

問題 No.1023 Cyclic Tour
ユーザー kmjpkmjp
提出日時 2020-04-10 23:27:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 2,440 bytes
コンパイル時間 2,856 ms
コンパイル使用メモリ 217,892 KB
実行使用メモリ 121,072 KB
最終ジャッジ日時 2024-09-16 01:54:07
合計ジャッジ時間 10,544 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
104,564 KB
testcase_01 AC 41 ms
104,432 KB
testcase_02 AC 39 ms
104,432 KB
testcase_03 AC 41 ms
104,432 KB
testcase_04 AC 77 ms
104,432 KB
testcase_05 AC 69 ms
104,432 KB
testcase_06 AC 70 ms
104,432 KB
testcase_07 AC 69 ms
104,432 KB
testcase_08 AC 81 ms
108,016 KB
testcase_09 AC 97 ms
113,908 KB
testcase_10 AC 94 ms
114,164 KB
testcase_11 AC 101 ms
114,544 KB
testcase_12 AC 106 ms
116,084 KB
testcase_13 AC 101 ms
115,316 KB
testcase_14 AC 99 ms
115,184 KB
testcase_15 AC 103 ms
115,444 KB
testcase_16 AC 151 ms
116,896 KB
testcase_17 AC 156 ms
117,028 KB
testcase_18 AC 154 ms
116,256 KB
testcase_19 AC 155 ms
116,260 KB
testcase_20 AC 108 ms
112,756 KB
testcase_21 AC 107 ms
113,008 KB
testcase_22 AC 121 ms
114,160 KB
testcase_23 AC 128 ms
114,464 KB
testcase_24 AC 138 ms
116,380 KB
testcase_25 AC 104 ms
112,756 KB
testcase_26 AC 104 ms
112,884 KB
testcase_27 AC 102 ms
112,372 KB
testcase_28 AC 136 ms
115,936 KB
testcase_29 AC 145 ms
116,768 KB
testcase_30 AC 141 ms
116,004 KB
testcase_31 AC 138 ms
115,488 KB
testcase_32 AC 143 ms
116,384 KB
testcase_33 AC 146 ms
116,000 KB
testcase_34 AC 61 ms
105,460 KB
testcase_35 AC 86 ms
106,096 KB
testcase_36 AC 115 ms
113,260 KB
testcase_37 AC 130 ms
115,356 KB
testcase_38 AC 139 ms
116,256 KB
testcase_39 AC 132 ms
114,464 KB
testcase_40 AC 132 ms
114,848 KB
testcase_41 AC 149 ms
114,724 KB
testcase_42 AC 95 ms
106,352 KB
testcase_43 AC 105 ms
108,452 KB
testcase_44 AC 78 ms
111,220 KB
testcase_45 AC 117 ms
121,072 KB
testcase_46 AC 121 ms
118,764 KB
testcase_47 AC 76 ms
110,956 KB
testcase_48 AC 107 ms
113,388 KB
testcase_49 AC 107 ms
113,128 KB
testcase_50 AC 104 ms
113,264 KB
testcase_51 AC 92 ms
106,608 KB
testcase_52 AC 93 ms
106,988 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]) return _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