BZOJ1060: [ZJOI2007]时态同步(树形dp 贪心)
2018-06-17 20:49:03来源:未知 阅读 ()
Submit: 3285 Solved: 1286
[Submit][Status][Discuss]
Description
Input
Output
仅包含一个整数V,为小Q最少使用的道具次数
Sample Input
1
1 2 1
1 3 3
Sample Output
HINT
N ≤ 500000,te ≤ 1000000
Source
// luogu-judger-enable-o2 #include<cstdio> #include<vector> #include<cstring> #define LL long long using namespace std; const int MAXN=1e6+10; #define getchar() (p1==p2&&(p2=(p1=buf)+fread(buf,1,1<<22,stdin),p1==p2)?EOF:*p1++) char buf[1<<22],*p1=buf,*p2=buf; inline int read() { char c=getchar();int x=0,f=1; while(c<'0'||c>'9'){if(c=='-')f=-1;c=getchar();} while(c>='0'&&c<='9'){x=x*10+c-'0';c=getchar();} return x*f; } struct Edge { int v,w; }; vector<Edge>v[MAXN]; LL mx[MAXN], Ans = 0; void Dfs(int now, int fa) { for(int i=0;i<v[now].size();i++) { if(v[now][i].v != fa) { Dfs(v[now][i].v, now); mx[now] = max(mx[now], mx[ v[now][i].v ] + v[now][i].w); } } for(int i=0;i<v[now].size();i++) { if(v[now][i].v != fa) Ans += mx[now] - mx[ v[now][i].v ] - v[now][i].w; } } int N, root; int main() { #ifdef WIN32 freopen("a.in","r",stdin); #endif N = read(), root = read(); for(int i=1;i<=N-1;i++) { int x = read(), y = read(), z = read(); v[x].push_back((Edge){y,z}); v[y].push_back((Edge){x,z}); } Dfs(root, -1); printf("%lld",Ans); return 0; }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- BZOJ1093: [ZJOI2007]最大半连通子图(tarjan dp) 2018-09-01
- BZOJ1059: [ZJOI2007]矩阵游戏(二分图匹配) 2018-07-09
- P1169 [ZJOI2007]棋盘制作 2018-06-17
- BZOJ 1059: [ZJOI2007]矩阵游戏 2018-06-17
- BZOJ1058: [ZJOI2007]报表统计(set) 2018-06-17
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash