acwing算法提高之图论--最小生成树的典型应用

目录

  • [1 介绍](#1 介绍)
  • [2 训练](#2 训练)

1 介绍

本专题用来记录使用prim算法或kruskal算法求解的题目。

2 训练

题目11140最短网络

C++代码如下,

cpp 复制代码
#include <iostream>
#include <cstring>

using namespace std;

const int N = 110, INF = 0x3f3f3f3f;
int g[N][N];
int d[N];
bool st[N];
int n, m;

void prim() {
    memset(d, 0x3f, sizeof d);
    
    int res = 0;
    for (int i = 0; i < n; ++i) {
        int t = -1;
        for (int j = 1; j <= n; ++j) {
            if (!st[j] && (t == -1 || d[t] > d[j])) {
                t = j;
            }
        }
        
        st[t] = true;
        if (i) res += d[t];
        
        for (int j = 1; j <= n; ++j) {
            if (d[j] > g[t][j]) {
                d[j] = g[t][j];
            }
        }
    }
    
    cout << res << endl;
    return;
}

int main() {
    cin >> n;
    for (int i = 1; i <= n; ++i) {
        for (int j = 1; j <= n; ++j) {
            cin >> g[i][j];
        }
    }
    
    prim();
    
    return 0;
}

题目21141局域网

C++代码如下,

cpp 复制代码
#include <iostream>
#include <cstring>
#include <algorithm>

using namespace std;

const int N = 110, M = 210;
int p[N];
int n, m;

struct Edge {
    int a, b, w;
    bool operator< (const Edge &W) const {
        return w < W.w;
    }
}edges[M];

int find(int x) {
    if (p[x] != x) p[x] = find(p[x]);
    return p[x];
}

int main() {
    cin >> n >> m;
    int s = 0;
    for (int i = 0; i < m; ++i) {
        cin >> edges[i].a >> edges[i].b >> edges[i].w;
        s += edges[i].w;
    }
    
    for (int i = 1; i <= n; ++i) p[i] = i;
    
    sort(edges, edges + m);
    
    int res = 0, cnt = 0;
    for (int i = 0; i < m; ++i) {
        int a = edges[i].a, b = edges[i].b, w = edges[i].w;
        a = find(a);
        b = find(b);
        if (a != b) {
            p[a] = b;
            res += w;
            cnt++;
        }
    }
    
    cout << s - res << endl;
    return 0;
}

题目31142繁忙的都市

C++代码如下,

cpp 复制代码
#include <iostream>
#include <cstring>
#include <algorithm>

using namespace std;

const int N = 310, M = 8010;
int n, m;
int p[N];

struct Edge {
    int a, b, w;
    bool operator< (const Edge &W) const {
        return w < W.w;
    }
}edges[M];

int find(int x) {
    if (p[x] != x) p[x] = find(p[x]);
    return p[x];
}

int main() {
    cin >> n >> m;
    for (int i = 1; i <= n; ++i) p[i] = i;
    
    for (int i = 0; i < m; ++i) {
        cin >> edges[i].a >> edges[i].b >> edges[i].w;
    }
    
    sort(edges, edges + m);
    
    int res = 0;
    int cnt = 0;
    for (int i = 0; i < m; ++i) {
        int a = edges[i].a, b = edges[i].b, w = edges[i].w;
        a = find(a);
        b = find(b);
        if (a != b) {
            p[a] = b;
            cnt += 1;
            res = w;
        }
    }
    
    cout << cnt << " " << res << endl;
    
    return 0;
}

题目41143联络员

C++代码如下,

cpp 复制代码
#include <iostream>
#include <cstring>
#include <algorithm>

using namespace std;

const int N = 2010, M = 10010;
int n, m;
int p[N];
struct Edge {
    int a, b, w;
    bool operator< (const Edge &W) const {
        return w < W.w;
    }
}edges[M];

int find(int x) {
    if (p[x] != x) p[x] = find(p[x]);
    return p[x];
}

int main() {
    cin >> n >> m;
    for (int i = 1; i <= n; ++i) p[i] = i;
    
    int res = 0;
    int j = 0;
    for (int i = 0; i < m; ++i) {
        int op, a, b, w;
        cin >> op >> a >> b >> w;
        if (op == 1) {
            res += w;
            a = find(a);
            b = find(b);
            if (a != b) {
                p[a] = b;
            }
        } else if (op == 2) {
            edges[j] = {a, b, w};
            j += 1;
        }
    }
    
    sort(edges, edges + j);
    for (int i = 0; i < j; ++i) {
        int a = edges[i].a, b = edges[i].b, w = edges[i].w;
        a = find(a);
        b = find(b);
        if (a != b) {
            p[a] = b;
            res += w;
        }
    }
    
    cout << res << endl;
    
    return 0;
}

题目51144连接格点

C++代码如下,

cpp 复制代码
#include <iostream>
#include <cstring>
#include <algorithm>

using namespace std;

const int N = 1e6 + 10, M = 2 * N;
int n, m;
int p[N];

struct Edge {
    int a, b, w;
    bool operator< (const Edge &W) const {
        return w < W.w;
    }
}edges[M];

int find(int x) {
    if (p[x] != x) p[x] = find(p[x]);
    return p[x];
}

int main() {
    cin >> n >> m;
    for (int i = 1; i <= n * m; ++i) p[i] = i;
    
    int x1, y1, x2, y2;
    while (cin >> x1 >> y1 >> x2 >> y2) {
        int w = 0;
        if (x1 == x2) w = 2;
        else w = 1;
        
        int a = (x1 - 1) * m + y1;
        int b = (x2 - 1) * m + y2;
        a = find(p[a]);
        b = find(p[b]);
        if (a != b) {
            p[a] = b;
        }
    }
    
    int k = 0;
    for (int i = 1; i <= n; ++i) {
        for (int j = 1; j < m; ++j) {
            //(i,j) -> (i,j+1)
            int a = (i - 1) * m + j;
            int b = (i - 1) * m + j + 1;
            edges[k] = {a, b, 2};
            k += 1;
            
            //cout << "a = " << a << ", b = " << b << endl;
        }
    }
    
    //cout << "===" << endl;
    
    for (int j = 1; j <= m; ++j) {
        for (int i = 1; i < n; ++i) {
            
            //(i,j) -> (i+1,j)
            int a = (i - 1) * m + j;
            int b = i * m + j;
            edges[k] = {a, b, 1};
            k += 1;            
            
            //cout << "a = " << a << ", b = " << b << endl;
        }
    }
    
    sort(edges, edges + k);
    
    int res = 0;
    for (int i = 0; i < k; ++i) {
        int a = edges[i].a, b = edges[i].b, w = edges[i].w;
        a = find(a);
        b = find(b);
        if (a != b) {
            p[a] = b;
            res += w;
        }
    }
    
    cout << res << endl;
       
    return 0;
}
相关推荐
蜡笔小马8 分钟前
10.Boost.Geometry R-tree 空间索引详解
开发语言·c++·算法·r-tree
唐梓航-求职中17 分钟前
编程-技术-算法-leetcode-288. 单词的唯一缩写
算法·leetcode·c#
仟濹19 分钟前
【算法打卡day3 | 2026-02-08 周日 | 算法: BFS】3_卡码网99_计数孤岛_BFS | 4_卡码网100_最大岛屿的面积DFS
算法·深度优先·宽度优先
Ll130452529822 分钟前
Leetcode二叉树part4
算法·leetcode·职场和发展
颜酱32 分钟前
二叉树遍历思维实战
javascript·后端·算法
宝贝儿好34 分钟前
第二章: 图像处理基本操作
算法
小陈phd1 小时前
多模态大模型学习笔记(二)——机器学习十大经典算法:一张表看懂分类 / 回归 / 聚类 / 降维
学习·算法·机器学习
@––––––1 小时前
力扣hot100—系列4-贪心算法
算法·leetcode·贪心算法
CoovallyAIHub1 小时前
让本地知识引导AI追踪社区变迁,让AI真正理解社会现象
深度学习·算法·计算机视觉
CoderCodingNo1 小时前
【GESP】C++ 二级真题解析,[2025年12月]第一题环保能量球
开发语言·c++·算法