P1967 货车运输

P1967 货车运输
最大生成树+lca+并查集

  1 #include<iostream>
  2 #include<cstdio>
  3 #include<queue>
  4 #include<algorithm>
  5 #include<cmath>
  6 #include<ctime>
  7 #include<set>
  8 #include<map>
  9 #include<stack>
 10 #include<cstring>
 11 #define inf 2147483647
 12 #define For(i,a,b) for(register int i=a;i<=b;i++)
 13 #define p(a) putchar(a)
 14 #define g() getchar()
 15 //by war
 16 //2017.11.8
 17 using namespace std;
 18 int n,m,q;
 19 int x,y,z;
 20 int cnt;
 21 int Min[10010][15];
 22 int f[10010][15];
 23 int d[10010];
 24 int deep[10010];
 25 
 26 struct kru
 27 {
 28     int l,r,v;
 29     bool operator<(const kru&a)const
 30     {
 31         return v>a.v;
 32     }
 33 }E[50010];
 34 
 35 struct node
 36 {
 37     int n;
 38     int v;
 39     node *next;
 40 }*e[50010];
 41 
 42 inline void in(register int &x)
 43 {
 44     int y=1;
 45     char c=g();x=0;
 46     while(c<'0'||c>'9')
 47     {
 48     if(c=='-')
 49     y=-1;
 50     c=g();
 51     }
 52     while(c<='9'&&c>='0')x=(x<<1)+(x<<3)+c-'0',c=g();
 53     x*=y;
 54 }
 55 inline void o(register int x)
 56 {
 57     if(x<0)
 58     {
 59         p('-');
 60         x=-x;
 61     }
 62     if(x>9)o(x/10);
 63     p(x%10+'0');
 64 }
 65 
 66 inline int find(register int x)
 67 {
 68     if(d[x]==x)return x;
 69     d[x]=find(d[x]);
 70     return d[x];
 71 }
 72 
 73 inline void push(register int x,register int y,register int v)
 74 {
 75     node *p;
 76     p=new node();
 77     p->n=y;
 78     p->v=v;
 79     if(e[x]==NULL)
 80     e[x]=p;
 81     else
 82     {
 83         p->next=e[x]->next;
 84         e[x]->next=p;
 85     }
 86 }
 87 
 88 inline void build(register int now)
 89 {
 90     deep[now]=deep[f[now][0]]+1;
 91     for(register int i=1;(1<<i)<=n;i++)
 92     {
 93         Min[now][i]=min(Min[now][i-1],Min[f[now][i-1]][i-1]);
 94         f[now][i]=f[f[now][i-1]][i-1];
 95     }
 96     for(node *i=e[now];i!=NULL;i=i->next)
 97     {
 98         if(i->n!=f[now][0])
 99         {
100             f[i->n][0]=now;
101             Min[i->n][0]=i->v;
102             build(i->n);
103         }
104     }
105 }
106 
107 int query(int x,int y)
108 {
109     int MIN=inf;
110     if(deep[x]<deep[y])
111     swap(x,y);
112     int c=deep[x]-deep[y];
113     for(register int i=0;(1<<i)<=c;i++)
114     if((1<<i)&c)
115     {
116     MIN=min(MIN,Min[x][i]);
117     x=f[x][i];    
118     }
119     if(x==y)
120     return MIN;
121     c=log2(deep[x]);
122     for(register int i=c;i>=0;i--)
123     {
124         if(f[x][i]!=f[y][i])
125         {
126             MIN=min(MIN,Min[x][i]);
127             MIN=min(MIN,Min[y][i]);
128             x=f[x][i];
129             y=f[y][i];
130         }
131     }
132     return min(MIN,min(Min[y][0],Min[x][0]));
133 }
134 
135 int main()
136 {
137     in(n),in(m);
138     For(i,1,n)
139     d[i]=i;
140     For(i,1,m)
141     in(E[i].l),in(E[i].r),in(E[i].v);
142     sort(E+1,E+m+1);
143     For(i,1,m)
144     {
145         if(find(E[i].l)!=find(E[i].r))
146         {
147             d[find(E[i].l)]=find(E[i].r);
148             cnt++;
149             push(E[i].l,E[i].r,E[i].v);
150             push(E[i].r,E[i].l,E[i].v);
151         }
152         if(cnt==n-1)
153         break;
154     }
155     Min[1][0]=inf;
156     build(1);
157     in(q);
158     For(i,1,q)
159     {
160         in(x),in(y);
161         if(find(x)!=find(y))
162         o(-1),p('\n');
163         else
164         o(query(x,y)),p('\n');
165     }
166      return 0;
167 }

 

转载于:https://www.cnblogs.com/war1111/p/7807667.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/415362.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

前端学习(2640):懂代码之登录页login.vue存入用户信息

<template><div class"login-wrap"><div class"ms-login"><div class"ms-title">后台管理系统</div><!--1定义参数类型 2定义路由规则 3使用ref去进行指向 --><el-form :model"param" :rules&…

js 根据时间生成唯一订单号

一般做唯一编号的时候&#xff0c;可以使用guid或者uuid的包直接生成&#xff0c;但是我希望唯一编号能够反应生成的时间信息&#xff0c;所以就准备使用日期随机值来构造&#xff0c;代码如下&#xff1a; const tradeNo function () {const now new Date()const year now…

(转) 并发处理

1、使用事物 2、使用消息队列 可以基于例如MemcacheQ等这样的消息队列。 比如有100张票可供用户抢&#xff0c;那么就可以把这100张票放到缓存中&#xff0c;读写时不要加锁。 当并发量大的时候&#xff0c;可能有500人左右抢票成功&#xff0c;这样对于500后面的请求可以直接转…

js将字符串 YYMMDDHHmmss 转化为 date类型

微信支付的回调参数time_end为日期字符串。 需求&#xff1a;将20190523101156转化为转换为Date日期格式Thu May 23 2019 10:11:56 GMT0800 (中国标准时间) const str2date (dateString)> {const pattern /(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})/;return new Dat…

Android 自定义带图标Toast,工具方法,Toast自定义显示时间

带图标Toast工具方法1 public static void show(Context act, String strContent, int iResouce){try {Toast toast new Toast(act);View view LayoutInflater.from(act).inflate(R.layout.layout_dialog_toastok, null);TextView tvContent view.findViewById(R.id.content…

This relative module was not found ./cptable webpack

在使用xlsx库的时候遇到的报错。 This relative module was not found: * ./cptable in ./node_modules/xlsx-style/dist/cpexcel.js记录解决方法&#xff0c;我是使用webpack进行配置的。 在chainWebpack里面增加一行代码&#xff0c;重新编译&#xff0c;即可。 config.ext…

工作155:首页样式调整第二次

<el-card><h1 style"float: left;margin-top: 34px;margin-left: 32px;">我的订单</h1><el-button size"mini" style"float: right;margin-top: 14px;margin-right: 10px;" type"primary" click"ListClick…

关于CaciiEZ端口流量阀值报警的设置

作者:邓聪聪 环境&#xff1a;CactiEZ v10.1 为了更高效的发现问题&#xff0c;在非工作期间&#xff0c;公司的网络可能会出现一些故障&#xff0c;为了及时解决问题&#xff0c;所以做了一个流量监控&#xff0c;并以邮件的方式发送流量异常的端口&#xff0c;以便及时了解状…

微信开发 getUserInfo:fail tunneling socket could not be established, cause=connect ECONNREFUSED

微信开发过程中&#xff0c;突然遇到一个奇怪的问题&#xff1a; 解决办法&#xff1a; 找到开发工具中 “工具 - 设置 - 代理设置”&#xff0c;选择即可不使用任何代理。

glide工具类。加载显示原图片,显示圆角图片,gif图标显示

依赖 //支持gif 的控件 implementation pl.droidsonroids.gif:android-gif-drawable:1.2.1 工具方法 private void updateGifLoopOne(GifImageView gif) {try { // 3、动画启动说明 // a、场景GIF每换一次页面&#xff0c;重新动画一次&#xff0c;每个…

Socket常用语法与socketserver实例

1》Socket相关&#xff1a; 1>Socket Families(地址簇): socket.AF_UNIX   本机进程间通信 socket.AF_INET   IPV4  socket.AF_INET6   IPV6 2>Socket Types: socket.SOCK_STREAM   #for tcp socket.SOCK_DGRAM   #for udp  socket.SOCK_RAW …

重新记录一下微信后台的配置

1、打开开发的基本配置&#xff0c;成为开发者 2、启用开发者密码 3、看一下自己的公众号id 4、记录自己的AppID、AppSecret

vue2.0 如何自定义组件(vue组件的封装)

一、前言 之前的博客聊过 vue2.0和react的技术选型&#xff1b;聊过vue的axios封装和vuex使用。今天简单聊聊 vue 组件的封装。 vue 的ui框架现在是很多的&#xff0c;但是鉴于移动设备的复杂性&#xff0c;兼容性问题突出。像 Mint-UI 等说实话已经很不错了&#xff0c;但是坑…

又双叒叕 - 中国汉字的奇妙

四个字组成的汉字&#xff1a; 又双叒叕【zhuo】 屮艸芔茻【mǎng】 火炎焱燚【yi】 一二三亖【si】 土圭垚㙓【dui】 口吕品田【tian】 水沝淼㵘【man】 日昌晶【liu】 木林森【gua】 月朋朤【lang】 金鍂鑫鑫【繁体】【xin】

小程序 获取当前所在地理位置 城市 信息

需求&#xff1a;在小程序首页需要显示用户所在城市。 解决方案&#xff1a;使用wx.getLocation获取经纬度坐标&#xff0c;再使用微信小程序JavaScript SDK的地址逆解析方法reverseGeocoder&#xff0c;就可以完美搞定。 微信小程序JavaScript SDK官方地址 https://lbs.qq.c…

php用ajax方式实现四级联动

使用ajax方式实现了下简单的 四级联动&#xff0c; 数据库&#xff1a; 以下为前台代码&#xff1a; 1 <!DOCTYPE html>2 <html>3 <head>4 <title>5 四级联动6 </title>7 <meta charset"utf-8">8 <s…

前端学习(2641):懂代码之header表头页之控制全屏显示

<!-- 全屏显示 控制全屏显示第一步 --><div class"btn-fullscreen" click"handleFullScreen"><el-tooltip effect"dark" :content"fullscreen?取消全屏:全屏" placement"bottom"><i class"el-ic…

微信公众号 模版消息 跳转到小程序报错{ errcode: 40013, errmsg: 'invalid appid hint: [cC6RwA09011295]' }

今天做微信公众号模版消息推送&#xff0c;要求点击模版消息&#xff0c;就直接跳转到小程序里面。 当然&#xff0c;我已经按照官方文档&#xff0c;填写了正确的小程序appid&#xff0c;可是还是报错。 { errcode: 40013, errmsg: invalid appid hint: [cC6RwA09011295] }最…

Android studio 运行即打包keystore之build.gradle设置

1、在build.gradle中android下添加keystore位置signingConfigs 如&#xff1a; apply plugin: com.android.applicationandroid {signingConfigs {config {keyAlias key0keyPassword 123567storeFile file(E:\\521copy\\Myditukaifa\\keystore\\mybdkeystore.jks)//这里是你的…