博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
BZOJ3573 HNOI2014米特运输
阅读量:5234 次
发布时间:2019-06-14

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

  显然确定一个点的权值后整棵树权值确定。只要算出根节点的权值就能知道两种改法是否等价。

  乘的话显然会炸,取log即可。map似乎会出一些问题,sort即可。

#include
#include
#include
#include
#include
#include
using namespace std;int read(){ int x=0,f=1;char c=getchar(); while (c<'0'||c>'9') { if (c=='-') f=-1;c=getchar();} while (c>='0'&&c<='9') x=(x<<1)+(x<<3)+(c^48),c=getchar(); return x*f;}#define N 500010#define double long doubleconst double eps=1E-10;int n,a[N],p[N],degree[N],t=0;double f[N];struct data{ int to,nxt;}edge[N<<1];void addedge(int x,int y){t++;edge[t].to=y,edge[t].nxt=p[x],p[x]=t;}void dfs(int k,int from){ for (int i=p[k];i;i=edge[i].nxt) if (edge[i].to!=from) degree[k]++; for (int i=p[k];i;i=edge[i].nxt) if (edge[i].to!=from) { f[edge[i].to]=f[k]+log(degree[k]); dfs(edge[i].to,k); }}int main(){#ifndef ONLINE_JUDGE freopen("bzoj3573.in","r",stdin); freopen("bzoj3573.out","w",stdout); const char LL[]="%I64d\n";#else const char LL[]="%lld\n";#endif n=read(); for (int i=1;i<=n;i++) a[i]=read(); for (int i=1;i

 

转载于:https://www.cnblogs.com/Gloid/p/9710947.html

你可能感兴趣的文章
Python(软件目录结构规范)
查看>>
Windows多线程入门のCreateThread与_beginthreadex本质区别(转)
查看>>
Nginx配置文件(nginx.conf)配置详解1
查看>>
linux php编译安装
查看>>
name phone email正则表达式
查看>>
721. Accounts Merge
查看>>
OpenCv-Python 图像处理基本操作
查看>>
「Unity」委托 将方法作为参数传递
查看>>
重置GNOME-TERMINAL
查看>>
redis哨兵集群、docker入门
查看>>
hihoCoder 1233 : Boxes(盒子)
查看>>
oracle中anyData数据类型的使用实例
查看>>
C++对vector里面的元素排序及取任意重叠区间
查看>>
软件测试——性能测试总结
查看>>
12.4站立会议
查看>>
Java Concurrentmodificationexception异常原因和解决方法
查看>>
客户端访问浏览器的流程
查看>>
codeforces水题100道 第二十二题 Codeforces Beta Round #89 (Div. 2) A. String Task (strings)
查看>>
c++||template
查看>>
[BZOJ 5323][Jxoi2018]游戏
查看>>