首页
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
不知道谁
2023年1月16日 14:45
kruskal
P1311
回复 0
|
赞 0
|
浏览 3.5k
#include <bits/stdc++.h> using namespace std; const int N = 1e5 + 10, M = 2e5 + 10, INF = 0x3f3f3f3f; int n, m; int p[N]; struct Edge { int a, b, w; bool operator<(const Edge &e) const { return w < e.w; } } es[M]; int find(int x) { ...
lljpwrs
2022年3月6日 13:47
并查集+Kruskal
P1311
回复 0
|
赞 0
|
浏览 4.7k
#include <iostream> #include <cstdio> #include <queue> using namespace std; const int N = 1000 + 10; struct Edge{ int from, to, length, statue; Edge(int f, int t, int l, int s): from(f), to(t), length(l), statue(s){} bool operator>(const Edge &...
James
2021年2月18日 19:34
克鲁斯卡尔
P1311
回复 0
|
赞 1
|
浏览 7.8k
#include <iostream> #include <algorithm> using namespace std; const int maxn=1e3; int f[maxn]; struct node{ int x,y,w,state; }; void init(int n){ for(int i=0;i<=n;i++){ f[i]=i; ...
老猫
2021年1月25日 14:24
一点点变形
P1311
回复 0
|
赞 0
|
浏览 8.2k
#include<iostream> #include<string> #include<string.h> #include<vector> #include<stdio.h> #include<algorithm> using namespace std; struct node { int u; int v; int weight; int state; }griph[105]; int a[105]; bool compare(node a,node b) { ...
1
2
题目
继续畅通工程
题解数量
14
发布题解
在线答疑
热门题解
1
继续畅通工程 题解:稍微修改1312
2
易理解的题解
3
继续畅通工程 题解:
4
继续畅通工程 题解:最简单的理解,你看不懂可以过来找我
5
继续畅通工程 题解:求助sos,为何通过率只有80%
6
继续畅通工程 题解:
7
继续畅通工程 题解:
8
克鲁斯卡尔
9
继续畅通工程 题解:简单代码来了:
10
继续畅通工程 题解:爆改原畅通工程