結果

問題 No.1023 Cyclic Tour
ユーザー tailstails
提出日時 2020-11-13 10:22:31
言語 cLay
(20240714-1)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 688 bytes
コンパイル時間 5,652 ms
コンパイル使用メモリ 213,816 KB
実行使用メモリ 15,104 KB
最終ジャッジ日時 2024-07-05 14:44:40
合計ジャッジ時間 12,056 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 20 ms
8,704 KB
testcase_05 AC 20 ms
8,576 KB
testcase_06 AC 22 ms
8,832 KB
testcase_07 AC 21 ms
8,832 KB
testcase_08 AC 22 ms
9,344 KB
testcase_09 AC 22 ms
9,088 KB
testcase_10 AC 21 ms
9,216 KB
testcase_11 AC 26 ms
9,472 KB
testcase_12 AC 24 ms
9,600 KB
testcase_13 AC 22 ms
9,088 KB
testcase_14 AC 20 ms
9,088 KB
testcase_15 AC 24 ms
9,344 KB
testcase_16 AC 37 ms
10,880 KB
testcase_17 AC 38 ms
10,880 KB
testcase_18 AC 37 ms
10,752 KB
testcase_19 AC 36 ms
10,624 KB
testcase_20 AC 41 ms
10,112 KB
testcase_21 AC 43 ms
10,240 KB
testcase_22 AC 40 ms
10,624 KB
testcase_23 AC 41 ms
10,880 KB
testcase_24 AC 45 ms
11,136 KB
testcase_25 AC 41 ms
10,112 KB
testcase_26 AC 42 ms
10,112 KB
testcase_27 AC 41 ms
9,856 KB
testcase_28 AC 41 ms
10,880 KB
testcase_29 AC 38 ms
10,752 KB
testcase_30 AC 40 ms
11,136 KB
testcase_31 AC 38 ms
11,136 KB
testcase_32 AC 40 ms
12,416 KB
testcase_33 AC 42 ms
11,648 KB
testcase_34 AC 36 ms
9,472 KB
testcase_35 AC 38 ms
9,856 KB
testcase_36 AC 40 ms
10,240 KB
testcase_37 AC 43 ms
11,520 KB
testcase_38 AC 37 ms
11,264 KB
testcase_39 AC 41 ms
10,624 KB
testcase_40 AC 39 ms
10,624 KB
testcase_41 AC 39 ms
10,624 KB
testcase_42 AC 43 ms
10,240 KB
testcase_43 AC 39 ms
10,624 KB
testcase_44 AC 25 ms
8,704 KB
testcase_45 AC 31 ms
14,592 KB
testcase_46 AC 29 ms
14,720 KB
testcase_47 AC 31 ms
15,104 KB
testcase_48 AC 37 ms
10,624 KB
testcase_49 AC 40 ms
10,752 KB
testcase_50 AC 38 ms
10,624 KB
testcase_51 AC 37 ms
10,752 KB
testcase_52 AC 36 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

graph g;
#define MAXN 100001
int gr[MAXN];
char vis[MAXN];

void f1(int i,int p,int r){
	if(gr[i]){
		wt("Yes");
		exit(0);
	}
	gr[i]=r;
	rep[g.edge[i]](j,g.es[i]){
		if(j!=p){
			f1(j,i,r);
		}
	}
}

void f2(int i){
	if(vis[i]){
		if(vis[i]==1){
			wt("Yes");
			exit(0);
		}
	}else{
		vis[i]=1;
		rep[g.edge[i]](j,g.es[i]){
			f2(j);
		}
		vis[i]=2;
	}
}

int a[2d5],b[2d5],c[2d5];
{
	int @n,@m;
	rd((a,b,c)(m));
	sortA(m,c,a,b);
	int h=2m-sum(c(m));
	g.setEdge(n+1,h,a,b);
	int r=1;
	for(int i=1;i<=n;++i){
		if(!gr[i]){
			f1(i,0,r++);
		}
	}
	for(int j=h;j<m;++j){
		a[j]=gr[a[j]];
		b[j]=gr[b[j]];
	}
	g.setDirectEdge(r,m-h,a+h,b+h);
	for(int i=0;i<r;++i){
		f2(i);
	}
	wt("No");
}
0