結果

問題 No.2914 正閉路検出
ユーザー tailstails
提出日時 2024-10-04 23:12:53
言語 cLay
(20240714-1)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 791 bytes
コンパイル時間 2,427 ms
コンパイル使用メモリ 184,292 KB
実行使用メモリ 25,928 KB
最終ジャッジ日時 2024-10-04 23:13:01
合計ジャッジ時間 6,525 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,760 KB
testcase_01 AC 3 ms
5,888 KB
testcase_02 AC 4 ms
5,888 KB
testcase_03 AC 3 ms
5,888 KB
testcase_04 AC 2 ms
5,760 KB
testcase_05 AC 3 ms
5,888 KB
testcase_06 AC 3 ms
5,760 KB
testcase_07 AC 3 ms
5,760 KB
testcase_08 AC 3 ms
5,888 KB
testcase_09 AC 3 ms
6,016 KB
testcase_10 AC 3 ms
5,760 KB
testcase_11 AC 3 ms
5,888 KB
testcase_12 AC 3 ms
5,760 KB
testcase_13 AC 3 ms
5,888 KB
testcase_14 AC 3 ms
5,760 KB
testcase_15 AC 3 ms
5,888 KB
testcase_16 AC 3 ms
5,760 KB
testcase_17 AC 3 ms
5,760 KB
testcase_18 AC 3 ms
5,760 KB
testcase_19 AC 6 ms
7,040 KB
testcase_20 AC 9 ms
9,344 KB
testcase_21 AC 4 ms
6,400 KB
testcase_22 AC 10 ms
9,856 KB
testcase_23 AC 8 ms
9,088 KB
testcase_24 AC 10 ms
10,240 KB
testcase_25 AC 4 ms
6,144 KB
testcase_26 AC 4 ms
6,400 KB
testcase_27 AC 14 ms
11,264 KB
testcase_28 AC 20 ms
13,312 KB
testcase_29 AC 38 ms
17,024 KB
testcase_30 AC 8 ms
8,064 KB
testcase_31 AC 13 ms
11,264 KB
testcase_32 AC 24 ms
13,312 KB
testcase_33 AC 7 ms
8,192 KB
testcase_34 AC 29 ms
14,848 KB
testcase_35 AC 34 ms
16,768 KB
testcase_36 AC 35 ms
17,152 KB
testcase_37 AC 33 ms
25,928 KB
testcase_38 AC 31 ms
25,472 KB
testcase_39 AC 36 ms
20,736 KB
testcase_40 AC 39 ms
25,416 KB
testcase_41 AC 38 ms
22,272 KB
testcase_42 AC 41 ms
25,728 KB
testcase_43 AC 43 ms
25,344 KB
testcase_44 AC 37 ms
20,608 KB
testcase_45 AC 39 ms
24,644 KB
testcase_46 AC 64 ms
24,576 KB
testcase_47 AC 39 ms
23,936 KB
testcase_48 AC 37 ms
21,248 KB
testcase_49 AC 39 ms
24,960 KB
testcase_50 AC 39 ms
23,936 KB
testcase_51 AC 21 ms
12,544 KB
testcase_52 AC 19 ms
12,288 KB
testcase_53 AC 21 ms
12,032 KB
testcase_54 AC 20 ms
12,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

struct N{int i,j,w;};
vector<N>d[1d5];
int e[1d5];
ll  h[1d5];
int o[1d5];
int z[1d5];
int dir;
bool f(int i,int l,ll g){
	if(e[i]==0){
		e[i]=1;
		h[i]=g;
		o[i]=l;
		rep(j,d[i].size()){
			z[l]=d[i][j].i;
			if(f(d[i][j].j,l+1,g+d[i][j].w)){
				if(e[i]==3){
					if(dir){
						rep(k,l,o[i]-1){
							wtSp(z[k]+1);
						}
						wt(z[o[i]-1]+1);
					}else{
						rrep(k,l+1,o[i]){
							wtSp(z[k]+1);
						}
						wt(z[l]+1);
					}
					exit(0);
				}
				return true;
			}
		}
		e[i]=2;
	}
	if(e[i]==1){
		if(g!=h[i]){
			wt(l-o[i]);
			wt(i+1);
			dir=g>h[i];
			o[i]=l;
			e[i]=3;
			return true;
		}
	}
	return false;
}
{
	int@n,@m,@(u,v,w)[m];
	rep(i,m){
		d[u[i]-1].push_back({i,v[i]-1,w[i]});
		d[v[i]-1].push_back({i,u[i]-1,-w[i]});
	}
	rep(i,n){
		f(i,0,0);
	}
	wt("-1");
}
0