91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何理解POJ 1986 java代碼實現

發布時間:2021-11-24 14:36:44 來源:億速云 閱讀:111 作者:柒染 欄目:云計算

今天就跟大家聊聊有關如何理解POJ 1986 java代碼實現,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

package pro.yao10_16LCA;

import java.util.*;
import java.io.*;

/**
7 6
1 6 13 E
6 3 9 E
3 5 7 S
4 1 3 N
2 4 20 W
4 7 2 S
3
1 6
1 4
2 6

 * @author XASW
 *
 */
public class Main {
	
	
	static int T,N,Q,S,E,W,set[],vis[],D[],first[];
	static Node[] nodes;
	static List<Integer[]> arrayV[];
	
	public static void main(String[] args) throws Exception{
		BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
		
		StringTokenizer st = new StringTokenizer(bf.readLine());
		N = Integer.valueOf(st.nextToken());
		Q = Integer.valueOf(st.nextToken());
		
		arrayV = new ArrayList[N+1];
		nodes = new Node[Q*2 +2];
		set = new int[N+1];
		vis = new int[N+1];
		D = new int[N+1];
		first = new int[N+1];
		
		for (int i = 0; i < N+1; i++) {
			arrayV[i] = new ArrayList<Integer[]>();
			set[i] = i;
			first[i] = -1;
		}
		for (int i = 0; i < Q *2 +2; i++) {
			nodes[i] = new Node();
		}
		
		for (int i = 1; i <= Q; i++) {
			st = new StringTokenizer(bf.readLine());
			S = Integer.valueOf(st.nextToken());
			E = Integer.valueOf(st.nextToken());
			W = Integer.valueOf(st.nextToken());

			arrayV[S].add(new Integer[] {E,W});
			arrayV[E].add(new Integer[] {S,W});
		}
		
		st = new StringTokenizer(bf.readLine());
		Q = Integer.valueOf(st.nextToken());
		
		for (int i = 0; i < Q; i++) {
			st = new StringTokenizer(bf.readLine());
			S = Integer.valueOf(st.nextToken());
			E = Integer.valueOf(st.nextToken());

			add(S,E,i*2);
			add(E,S,i*2+1);
		}
		
		D[1] = 0;
		tarjan(1);
		
		for (int i = 0; i < Q; i++) {
			int id = i*2;
			int u = nodes[id].from;
			int v = nodes[id].to;
			int lca = nodes[id].lca;
			
			System.out.println(D[u] + D[v]-2*D[lca]);
		}
		
	}
	
	static void tarjan(int u) {
		vis[u] = 1;
		for (int i = 0; i < arrayV[u].size(); i++) {
			Integer[] s = arrayV[u].get(i);
			if(vis[s[0]]==1) continue;
			D[s[0]] = D[u]+s[1];
			tarjan(s[0]);
			join(s[0],u);
		}
		
		for (int i = first[u]; i != -1; i=nodes[i].next) {
			int v = nodes[i].to;
			if(vis[v]==0)continue;
			nodes[i].lca = nodes[i^1].lca = find(v);
		}
	}
	
	static void add(int u,int v,int cnt) {
		nodes[cnt].to = v;
		nodes[cnt].from = u;
		nodes[cnt].next = first[u];
		first[u] = cnt;
	}
	
	static int find(int a) {
		if(set[a] == a) {
			return set[a];
		}
		return set[a] = find(set[a]);
	}
	static void join(int a,int b) {
		int A = find(a);
		int B = find(b);
		if(A!=B) {
			set[A] = B;
		}
		
	}
	static class Node{
		int from;
		int to;
		int next;
		int lca;
	}
	
}

看完上述內容,你們對如何理解POJ 1986 java代碼實現有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

垣曲县| 黔西县| 共和县| 忻州市| 西畴县| 休宁县| 石林| 周口市| 桐城市| 肥乡县| 余庆县| 海淀区| 鹤峰县| 日土县| 历史| 厦门市| 临邑县| 泸定县| 旬阳县| 女性| 唐海县| 吕梁市| 库伦旗| 荃湾区| 成安县| 镇坪县| 三台县| 阳东县| 磐安县| 崇礼县| 小金县| 汝阳县| 黑山县| 景洪市| 枞阳县| 区。| 聊城市| 中卫市| 伊川县| 湟源县| 泗水县|