HDU 4514 湫湫系列故事――设计风景线 (树形DP)
题意:略。
析:首先先判环,如果有环直接输出,用并查集就好,如果没有环,那么就是一棵树,然后最长的就是树的直径,这个题注意少开内存,容易超内存,
还有用C++交用的少一些,我用G++交的卡在32764K,限制是32768K。。
代码如下:
#pragma comment(linker, "/STACK:1024000000,1024000000")
#include <cstdio>
#include <string>
#include <cstdlib>
#include <cmath>
#include <iostream>
#include <cstring>
#include <set>
#include <queue>
#include <algorithm>
#include <vector>
#include <map>
#include <cctype>
#include <cmath>
#include <stack>
//#include <tr1/unordered_map>
#define freopenr freopen("in.txt", "r", stdin)
#define freopenw freopen("out.txt", "w", stdout)
using namespace std;
//using namespace std :: tr1; typedef long long LL;
typedef pair<int, int> P;
const int INF = 0x3f3f3f3f;
const double inf = 0x3f3f3f3f3f3f;
const LL LNF = 0x3f3f3f3f3f3f;
const double PI = acos(-1.0);
const double eps = 1e-8;
const int maxn = 1e5 + 5;
const LL mod = 10000000000007;
const int N = 1e6 + 5;
const int dr[] = {-1, 0, 1, 0, 1, 1, -1, -1};
const int dc[] = {0, 1, 0, -1, 1, -1, 1, -1};
const char *Hex[] = {"0000", "0001", "0010", "0011", "0100", "0101", "0110", "0111", "1000", "1001", "1010", "1011", "1100", "1101", "1110", "1111"};
inline LL gcd(LL a, LL b){ return b == 0 ? a : gcd(b, a%b); }
int n, m;
const int mon[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
const int monn[] = {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
inline int Min(int a, int b){ return a < b ? a : b; }
inline int Max(int a, int b){ return a > b ? a : b; }
inline LL Min(LL a, LL b){ return a < b ? a : b; }
inline LL Max(LL a, LL b){ return a > b ? a : b; }
inline bool is_in(int r, int c){
return r >= 0 && r < n && c >= 0 && c < m;
}
vector<P> G[maxn];
int p[maxn], dp[maxn];
bool vis[maxn], viss[maxn]; int Find(int x){ return x == p[x] ? x : p[x] = Find(p[x]); } int bfs(int root){
memset(vis, false, sizeof vis);
memset(dp, 0, sizeof dp);
queue<int> q;
q.push(root);
vis[root] = viss[root] = true;
int ans = root, maxx = 0; while(!q.empty()){
int u = q.front(); q.pop();
for(int i = 0; i < G[u].size(); ++i){
P p = G[u][i];
int v = p.first;
int w = p.second;
if(vis[v]) continue;
vis[v] = viss[v] = true;
dp[v] = dp[u] + w;
if(maxx < dp[v]){
maxx = dp[v];
ans = v;
}
q.push(v);
}
}
return ans;
} int solve(int root){
int u = bfs(root);
int v = bfs(u);
return dp[v];
} int main(){
while(scanf("%d %d", &n, &m) == 2){
int u, v, c;
for(int i = 1; i <= n; ++i) G[i].clear(), p[i] = i;
bool ok = false;
for(int i = 0; i < m; ++i){
scanf("%d %d %d", &u, &v, &c);
int x = Find(u);
int y = Find(v);
if(x != y) p[y] = x;
else ok = true;
G[u].push_back(P(v, c));
G[v].push_back(P(u, c));
}
if(ok){ puts("YES"); continue; } memset(viss, false, sizeof viss);
int ans = 0;
for(int i = 1; i <= n; ++i)
if(!viss[i]) ans = Max(ans , solve(i));
printf("%d\n", ans);
}
return 0;
}
HDU 4514 湫湫系列故事――设计风景线 (树形DP)的更多相关文章
- hdu-----(4514)湫湫系列故事——设计风景线(树形DP+并查集)
		湫湫系列故事——设计风景线 Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 65535/32768 K (Java/Others)Tot ... 
- HDU 4514 湫湫系列故事——设计风景线 树的直径
		题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=4514 湫湫系列故事--设计风景线 Time Limit: 5000/2000 MS (Java/Ot ... 
- HDU 4514 湫湫系列故事——设计风景线(并查集+树形DP)
		湫湫系列故事——设计风景线 Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 65535/32768 K (Java/Others) To ... 
- Hdu 4514 湫湫系列故事——设计风景线
		湫湫系列故事--设计风景线 Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 65535/32768 K (Java/Others) Total ... 
- HDU 4514 - 湫湫系列故事——设计风景线 - [并查集判无向图环][树形DP求树的直径]
		题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4514 Time Limit: 6000/3000 MS (Java/Others) Memory Li ... 
- hdu 4514 湫湫系列故事――设计风景线(求树的直径)
		随着杭州西湖的知名度的进一步提升,园林规划专家湫湫希望设计出一条新的经典观光线路,根据老板马小腾的指示,新的风景线最好能建成环形,如果没有条件建成环形,那就建的越长越好. 现在已经勘探确定了n个位置 ... 
- HDU - 4514 湫湫系列故事——设计风景线(并查集判环)
		题目: 随着杭州西湖的知名度的进一步提升,园林规划专家湫湫希望设计出一条新的经典观光线路,根据老板马小腾的指示,新的风景线最好能建成环形,如果没有条件建成环形,那就建的越长越好. 现在已经勘探确定了n ... 
- 刷题总结——湫湫系列故事——设计风景线(hdu4514 并差集判环+树的直径)
		题目: 随着杭州西湖的知名度的进一步提升,园林规划专家湫湫希望设计出一条新的经典观光线路,根据老板马小腾的指示,新的风景线最好能建成环形,如果没有条件建成环形,那就建的越长越好. 现在已经勘探 ... 
- hdu ---(4517)小小明系列故事——游戏的烦恼(Dp)
		小小明系列故事——游戏的烦恼 Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 65535/32768 K (Java/Others)To ... 
随机推荐
- thinkphp 3.2.3 计划任务具体实现实例教程
			thinkphp 3.2.3 计划任务具体实现实例教程 很多情况下,我们网站都会用到计划任务即定时更新做一些处理,类似Discuz后台的计划任务,比如更新每日发帖数目等等! 这里TP也是可以实现的,首 ... 
- 【HDU】1520 Anniversary party(树形dp)
			题目 题目 分析 带权值的树上最大独立集 代码 #include <bits/stdc++.h> using namespace std; ; int a[maxn], n, fa[max ... 
- 【洛谷】P1052 过河(状压dp)
			题目描述 在河上有一座独木桥,一只青蛙想沿着独木桥从河的一侧跳到另一侧.在桥上有一些石子,青蛙很讨厌踩在这些石子上.由于桥的长度和青蛙一次跳过的距离都是正整数,我们可以把独木桥上青蛙可能到达的点看成数 ... 
- wampserver提示You don't have permission to access
			在wampserver上单击左键,打开菜单中Apache下的httpd.conf 注视掉以下代码 <Directory “C:/wamp/www”> Deny from all Allo ... 
- 100.64.0.0/10运营商级(Carrier-grade)NAT保留IP地址
			在一次跟踪路由的网络操作时发现自己路由器下一跳路由节点的IP地址比较奇怪,是100.64.0.1.好奇促使我查询了这个IP地址的归属,结果是保留地址,到这里觉得比较奇怪了,按照常理以IPv4为例保留的 ... 
- 25行 Python 代码实现人脸检测——OpenCV 技术教程
			这是篇是利用 OpenCV 进行人脸识别的技术讲解.阅读本文之前,这是注意事项: 建议先读一遍本文再跑代码——你需要理解这些代码是干什么的.成功跑一遍不是目的,能够举一反三.在新任务上找出 bug 才 ... 
- git账户的存储
			在使用git时,使用git pull,或git push,每次都要我输入用户名和密码,比较麻烦.git有个参数可以解决这个问题. 修改./git/config文件,增加 [credential] he ... 
- Java-从堆栈常量池解析equals()与==
			一.基本概念 ①JAVA中的基本数据类型(简单类型,内置类型): 字节型(byte),短整型(short),整型(int),长整型(long),字符型(char),浮点型(float),双精度型(do ... 
- keil5破解
			没有破解之前的keil只能编译限制大小的代码,72K好像我忘了?太长的话会报错. 注册机网址:http://bbs.armfly.com/read.php?tid=2346 1.在keil5左上角的F ... 
- 多线程环境下的UI异步操作
			转自原文 多线程环境下的UI异步操作 解决VS中,线程间不可互操作的问题,一揽子解决方案: 一.首先,定义一个类:SetControlProperty using System.Reflection; ... 
