結果

問題 No.1326 ふたりのDominator
ユーザー tailstails
提出日時 2020-12-23 17:03:52
言語 cLay
(20240714-1)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 932 bytes
コンパイル時間 5,722 ms
コンパイル使用メモリ 187,608 KB
実行使用メモリ 25,356 KB
最終ジャッジ日時 2024-09-23 03:03:09
合計ジャッジ時間 6,428 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,492 KB
testcase_01 AC 3 ms
7,492 KB
testcase_02 AC 4 ms
9,684 KB
testcase_03 AC 3 ms
7,496 KB
testcase_04 AC 3 ms
7,620 KB
testcase_05 AC 2 ms
7,620 KB
testcase_06 AC 3 ms
9,664 KB
testcase_07 AC 4 ms
7,748 KB
testcase_08 AC 3 ms
7,744 KB
testcase_09 AC 4 ms
7,624 KB
testcase_10 AC 4 ms
7,616 KB
testcase_11 AC 4 ms
9,668 KB
testcase_12 AC 68 ms
20,768 KB
testcase_13 AC 69 ms
19,448 KB
testcase_14 AC 68 ms
20,860 KB
testcase_15 AC 67 ms
22,632 KB
testcase_16 AC 64 ms
21,088 KB
testcase_17 AC 55 ms
20,168 KB
testcase_18 AC 59 ms
21,196 KB
testcase_19 AC 46 ms
21,320 KB
testcase_20 AC 70 ms
22,448 KB
testcase_21 AC 70 ms
23,900 KB
testcase_22 AC 79 ms
25,356 KB
testcase_23 AC 48 ms
22,612 KB
testcase_24 AC 68 ms
22,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

vector<int> nev[5d4];
int ena[1d5][2];
int nvis[5d4];
unionFind uf;

int f1(int ni,int ei){
	if(nvis[ni]){
		return nvis[ni]>0&&++nvis[ni];
	}
	int level=0;
	for(int ej:nev[ni]){
		if(ej!=ei){
			int nj=ni^ena[ej][0]^ena[ej][1];
			nvis[ni]=1;
			int l1=f1(nj,ej)-(nvis[ni]-1);
			level+=l1;
			if(l1){
				uf(ei,ej);
			}
		}
	}
	nvis[ni]=-1;
	return level;
}

int ec[1d5],ecn;
int ge[2][2d5];

{
	int @n,@m;
	uf.walloc(m,1);
	rep(i,m){
		int @u,@v;
		--u;
		--v;
		nev[u].push_back(i);
		nev[v].push_back(i);
		ena[i][0]=u;
		ena[i][1]=v;
	}
	f1(0,-1);
	unordered_set<long> ens;
	int gen=0;
	rep(i,m){
		int j=uf(i);
		if(!ec[j]){
			ec[j]=~ecn++;
		}
		j=~ec[j];
		rep(k,2){
			if(ens.insert(j<<16|ena[i][k]).second){
				ge[0][gen]=ena[i][k];
				ge[1][gen]=n+j;
				++gen;
			}
		}
	}
	graph g;
	g.setEdge(n+ecn,gen,ge[0],ge[1]);
	HLD h;
	h.init(g);
	int @q;
	rep(q){
		int @x,@y;
		--x;--y;
		wt(x==y?0:h.dist(x,y)/2-1);
	}
}
0