結果

問題 No.2914 正閉路検出
ユーザー tailstails
提出日時 2024-10-04 22:58:27
言語 cLay
(20240714-1)
結果
WA  
実行時間 -
コード長 790 bytes
コンパイル時間 2,355 ms
コンパイル使用メモリ 184,856 KB
実行使用メモリ 26,052 KB
最終ジャッジ日時 2024-10-04 22:58:40
合計ジャッジ時間 9,773 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,492 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 3 ms
6,820 KB
testcase_03 AC 2 ms
7,496 KB
testcase_04 AC 2 ms
7,492 KB
testcase_05 AC 2 ms
7,368 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 WA -
testcase_08 AC 3 ms
7,500 KB
testcase_09 AC 3 ms
7,496 KB
testcase_10 AC 3 ms
7,496 KB
testcase_11 AC 3 ms
7,496 KB
testcase_12 AC 3 ms
7,496 KB
testcase_13 AC 2 ms
7,624 KB
testcase_14 WA -
testcase_15 AC 3 ms
7,620 KB
testcase_16 WA -
testcase_17 AC 3 ms
7,620 KB
testcase_18 WA -
testcase_19 AC 6 ms
8,520 KB
testcase_20 AC 9 ms
11,080 KB
testcase_21 AC 4 ms
8,008 KB
testcase_22 AC 10 ms
11,588 KB
testcase_23 WA -
testcase_24 AC 12 ms
11,464 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 13 ms
12,872 KB
testcase_28 AC 18 ms
14,364 KB
testcase_29 AC 38 ms
17,096 KB
testcase_30 AC 8 ms
7,852 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 32 ms
26,052 KB
testcase_38 AC 29 ms
25,924 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 21 ms
13,252 KB
testcase_52 AC 19 ms
11,784 KB
testcase_53 WA -
testcase_54 AC 20 ms
13,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

struct N{int i,j,w;};
vector<N>d[1d5];
int e[1d5];
int h[1d5];
int o[1d5];
int z[1d5];
int dir;
bool f(int i,int l,int 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]);
					}
					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