1 solutions

  • 0
    @ 2025-3-3 16:24:08

    C++ :

    #include <bits/stdc++.h>
    using namespace std;
    
    struct node{
    	int x,y,len;	
    }; 
    
    
    int f[110];
    node a[10010];
    int t,k = 0;
    int n,q;
    
    int find(int x){
    	return x == f[x]?x:f[x] = find(f[x]);
    }
    
    void merge(int x,int y){
    	int fx = find(x);
    	int fy = find(y);
    	if(fx != fy){
    		f[fx] = fy;
    	}
    }
    
    bool cmp(node n1,node n2){
    	return n1.len < n2.len;
    }
    
    int main() {
    	cin>>n;
    	for(int i = 1;i <= n;i++){
    		for(int j = 1;j <= n;j++){
    			cin>>t;
    			if(i > j){
    				k++;
    				a[k].x = i;
    				a[k].y = j;
    				a[k].len = t;		
    			}		
    		}
    	}
    	
    	for(int i = 1;i <= n;i++){
    		f[i] = i;
    	} 
    	
    	sort(a+1,a+k+1,cmp);
    	cin>>q;
    	int x,y;
    	int c = 0;
    	for(int i = 1;i <= q;i++){
    		cin>>x>>y;
    		if(find(x) != find(y)){
    			c++;
    			merge(x,y);
    		}
    	}
    	
    	if(c >= n - 1){
    		cout<<0;
    		return 0;
    	}
    	
    	int s = 0;
    	for(int i = 1;i <= k;i++){
    		if(find(a[i].x) != find(a[i].y)){
    			merge(a[i].x,a[i].y);
    			c++;
    			s = s + a[i].len;
    		}
    		
    		if(c == n - 1){
    			cout<<s;
    			break;
    		}
    	}
    }
    
    
    
    • 1

    Information

    ID
    10012
    Time
    1000ms
    Memory
    128MiB
    Difficulty
    (None)
    Tags
    # Submissions
    0
    Accepted
    0
    Uploaded By