POJ3728 The merchant解题报告
Description
There are N cities in a country, and there is one and only one simple path between each pair of cities. A merchant has chosen some paths and wants to earn as much money as possible in each path. When he move along a path, he can choose one city to buy some goods and sell them in a city after it. The goods in all cities are the same but the prices are different. Now your task is to calculate the maximum possible profit on each path.
Input
The first line contains N, the number of cities.
Each of the next N lines contains wi the goods' price in each city.
Each of the next N-1 lines contains labels of two cities, describing a road between the two cities.
The next line contains Q, the number of paths.
Each of the next Q lines contains labels of two cities, describing a path. The cities are numbered from 1 to N.1 ≤ N, wi, Q ≤ 50000
Output
The output contains Q lines, each contains the maximum profit of the corresponding path. If no positive profit can be earned, output 0 instead.
Sample Input
4
1
5
3
2
1 3
3 2
3 4
9
1 2
1 3
1 4
2 3
2 1
2 4
3 1
3 2
3 4
Sample Output
4
2
2
0
0
0
0
2
0
分析:
首先n个点只有n-1条边,又保证每两个点之间只有一条路径,明显是一颗树。
题目就变成了找到两个点之间的路径,求出路径后再要求出最大收益便非常简单。
求一颗树中两点的路径可以用最近公共祖先算法
还可以在求LCA的同时将最大收益更新出来,只需要记录几个值即可。
如果是要边找边求的话使用离线的tarjan算法,只要记录几个值,便可。
由于对倍增法不太熟悉所以用这道题来熟悉倍增法
代码在这里
#include <cstdio>
#include <vector>
#define INF 55555
using namespace std;
struct record {
int x, upMax, doMax, pMin, pMax;
};
int nPrice[INF], nSnode[INF];
int nDeep[INF];
record pNode[INF][18];
bool vis[INF];
const int Pow = 17;
vector<int> g[INF];
//dfs 求出所需值
void dfs (int u, int fa) {
vis[u] = true, nDeep[u] = nDeep[fa] + 1, pNode[u][0].x = fa;
//pNode记录从节点向上2^j个节点中最大收益upMAX,
//从最上节点到u的最大收益domax,和最大价格最小价格pMax,pMin
pNode[u][0].pMin = min (nPrice[u], nPrice[fa]);
pNode[u][0].pMax = max (nPrice[u], nPrice[fa]);
pNode[u][0].upMax = max (0, nPrice[fa] - nPrice[u]),;
pNode[u][0].doMax = max (nPrice[u] - nPrice[fa], 0);
//dp更新pNode
for (int i = 1; i <= Pow; i++) {
int j = pNode[u][i - 1].x;
pNode[u][i].x = pNode[j][i - 1].x;
pNode[u][i].pMin = min (pNode[u][i - 1].pMin, pNode[j][i - 1].pMin);
pNode[u][i].pMax = max (pNode[u][i - 1].pMax, pNode[j][i - 1].pMax);
pNode[u][i].upMax = max (pNode[u][i - 1].upMax, pNode[j][i - 1].upMax);
pNode[u][i].upMax = max (pNode[u][i].upMax,
pNode[j][i - 1].pMax - pNode[u][i - 1].pMin);
pNode[u][i].doMax = max (pNode[u][i - 1].doMax, pNode[j][i - 1].doMax);
pNode[u][i].doMax = max (pNode[u][i].doMax,
pNode[u][i - 1].pMax - pNode[j][i - 1].pMin);
};
int nSize = g[u].size();
for (int i = 0; i < nSize; i++) {
int v = g[u][i];
if (v == fa || vis[v]) continue;
dfs (v, u);
}
}
int aMin, bMax, upDmax, doDmax, ans;
//更新doDmax
void makeb (int i, int &b) {
doDmax = max (doDmax, pNode[b][i].doMax),;
doDmax = max (doDmax, bMax - pNode[b][i].pMin);
bMax = max (bMax, pNode[b][i].pMax);
b = pNode[b][i].x;
}
//更新upDmax
void makea (int i, int &a) {
upDmax = max (upDmax, pNode[a][i].upMax),;
upDmax = max (upDmax, pNode[a][i].pMax - aMin);
aMin = min (aMin, pNode[a][i].pMin);
a = pNode[a][i].x;
}
int bzlca (int a, int b) {
aMin = nPrice[a], bMax = nPrice[b] ;
upDmax = doDmax = 0;
//将a,b置于同一层
//将b向上提,更新向下到b的最大收益doDmax
if (nDeep[a] < nDeep[b])
for (int del = nDeep[b] - nDeep[a], i = 0; i < Pow; i++)
if (del & (1 << i) ) makeb (i, b);
//将a向上提,更新从a向上到的最大收益upDmax
if (nDeep[a] > nDeep[b])
for (int del = nDeep[a] - nDeep[b], i = 0; i < Pow; i++)
if (del & (1 << i) ) makea (i, a);
//找到a,b的最近公共祖先,同时更新从a向上到祖先的最大收益
//从祖先向下到b的最大收益
if (a != b) {
for (int i = Pow ; i >= 0; i--)
if (pNode[a][i].x != pNode[b][i].x) makea (i, a), makeb (i, b);
makea (0, a), makeb (0, b);
}
ans = max (doDmax, upDmax), ans = max (ans, bMax - aMin);
return ans;
}
int main() {
int x, y, n, m;
scanf ("%d", &n);
for (int i = 1; i <= n; i++) scanf ("%d", &nPrice[i]);
for (int i = 1; i < n; i++) {
scanf ("%d %d", &x, &y);
g[x].push_back (y), g[y].push_back (x);
}
dfs (1, 1);
scanf ("%d", &m);
for (int i = 1; i <= m; i++) {
scanf ("%d %d", &x, &y);
printf ("%d\n", bzlca (x, y) );
}
return 0;
}
POJ3728 The merchant解题报告的更多相关文章
- 雅礼集训 Day6 T1 Merchant 解题报告
Merchant 题目描述 有\(n\)个物品,第\(i\)个物品有两个属性\(k_i,b_i\),表示它在时刻\(x\)的价值为\(k_i\times x+b_i\). 当前处于时刻\(0\),你可 ...
- CH Round #56 - 国庆节欢乐赛解题报告
最近CH上的比赛很多,在此会全部写出解题报告,与大家交流一下解题方法与技巧. T1 魔幻森林 描述 Cortana来到了一片魔幻森林,这片森林可以被视作一个N*M的矩阵,矩阵中的每个位置上都长着一棵树 ...
- 二模13day1解题报告
二模13day1解题报告 T1.发射站(station) N个发射站,每个发射站有高度hi,发射信号强度vi,每个发射站的信号只会被左和右第一个比他高的收到.现在求收到信号最强的发射站. 我用了时间复 ...
- BZOJ 1051 最受欢迎的牛 解题报告
题目直接摆在这里! 1051: [HAOI2006]受欢迎的牛 Time Limit: 10 Sec Memory Limit: 162 MBSubmit: 4438 Solved: 2353[S ...
- 习题:codevs 2822 爱在心中 解题报告
这次的解题报告是有关tarjan算法的一道思维量比较大的题目(真的是原创文章,希望管理员不要再把文章移出首页). 这道题蒟蒻以前做过,但是今天由于要复习tarjan算法,于是就看到codevs分类强联 ...
- 习题:codevs 1035 火车停留解题报告
本蒟蒻又来写解题报告了.这次的题目是codevs 1035 火车停留. 题目大意就是给m个火车的到达时间.停留时间和车载货物的价值,车站有n个车道,而火车停留一次车站就会从车载货物价值中获得1%的利润 ...
- 习题: codevs 2492 上帝造题的七分钟2 解题报告
这道题是受到大犇MagHSK的启发我才得以想出来的,蒟蒻觉得自己的代码跟MagHSK大犇的代码完全比不上,所以这里蒟蒻就套用了MagHSK大犇的代码(大家可以关注下我的博客,友情链接就是大犇MagHS ...
- 习题:codevs 1519 过路费 解题报告
今天拿了这道题目练练手,感觉自己代码能力又增强了不少: 我的思路跟别人可能不一样. 首先我们很容易就能看出,我们需要的边就是最小生成树算法kruskal算法求出来的边,其余的边都可以删掉,于是就有了这 ...
- NOIP2016提高组解题报告
NOIP2016提高组解题报告 更正:NOIP day1 T2天天爱跑步 解题思路见代码. NOIP2016代码整合
随机推荐
- 在Windows7下编译调试C#程序
要在 命令行下编译C#代码,要配置一下 1.在环境变量下新建一个变量 参数名: csc 参数值:C:\Windows\Microsoft.NET\Framework\v4.0.30319 2.在系统变 ...
- mysql 判断null 和 空字符串
1.在mysql中null 不能使用任何运算符与其他字段或者变量(函数.存储过程)进行运算.若使用运算数据就可能会有问题. 2.对null 的判断: 创建一个user表:id 主健 name 可以为空 ...
- Redis缓存Object,List对象
一.到目前为止(jedis-2.2.0.jar),在Jedis中其实并没有提供这样的API对对象,或者是List对象的直接缓存,即并没有如下类似的API jedis.set(String key, O ...
- mysql 插入多条记录,重复值不插入
只去除主键与唯一索引的字段,字段为null时 是可以重复插入的domo: insert ignore into table_name(email,phone,user_id) values('test ...
- Winform webbrowser 隐藏 html 元素
目的:用webbrowser打开网页,并隐藏网页上某个html元素 1.如果已知元素ID,比较好办 直接使用webbrowser1.Document.getElementById("id&q ...
- (转)淘淘商城系列——VMware添加已配置好的虚拟机
http://blog.csdn.net/yerenyuan_pku/article/details/72802323 我们有时候会碰到虚拟机环境搭建特别麻烦,很容易出错的问题,而这时我们又刚好有别人 ...
- (转)Spring中的事务操作
http://blog.csdn.net/yerenyuan_pku/article/details/70024364 事务的回顾 什么是事务 事务是逻辑上的一组操作,组成这组操作的各个逻辑单元,要么 ...
- SpringBoot传参转换枚举
有时候,我们传参的时候,希望使用枚举类来当作参数 public enum VipEnum { HUANG(1, "黄钻"), HONG(2, "红钻"); pr ...
- laravel学习:模块化caffeinated
# Modules Extract and modularize your code for maintainability. Essentially creates "mini-larav ...
- jQuery 收缩展开效果
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Conten ...