博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ZOJ 2158 POJ 1789 Truck History
阅读量:6035 次
发布时间:2019-06-20

本文共 539 字,大约阅读时间需要 1 分钟。

最小生成树,主要是题目比较难懂。

#include 
#include
#include
#include
using namespace std;const int Maxn=2000+10;const int maxn=2000*2000+10;int Father[Maxn];struct Edge{ int from,to,w;}edge[maxn];int n,tot;char s[maxn][10];int Find(int x){ if(x!=Father[x]) Father[x]=Find(Father[x]); return Father[x];}void init(){ for(int i=0;i<=n;i++) Father[i]=i; tot=0;}bool cmp(const Edge&a,const Edge&b){ return a.w

 

转载于:https://www.cnblogs.com/zufezzt/p/4726371.html

你可能感兴趣的文章
代替eval执行字符串表达式
查看>>
数据库备份与还原
查看>>
第五周作业
查看>>
echarts
查看>>
srand rand
查看>>
[HDU]2161Primes
查看>>
《零基础入门学习Python》【第一版】视频课后答案第001讲
查看>>
Debian下install JDK
查看>>
SQL Server 中WITH (NOLOCK)浅析
查看>>
关于android SDK安装Failed to fetch URL 的错误解决
查看>>
thrift 远程服务调用 简单示例
查看>>
FPGA与simulink联合实时环路系列——实验三 按键key
查看>>
Java并发编程:线程池的使用
查看>>
Docker 下系统日志恢复
查看>>
KBEngine 服务器端-loginapp-协议构建、解析执行
查看>>
spring mvc ehcache 详细配置 亲测可用
查看>>
ssm整合详解
查看>>
Wepy--小程序自定义底部tabBar
查看>>
linux的目录结构
查看>>
理解 JavaScript 中的 this
查看>>