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代码整合
随机推荐
- Toolbar自定义布局
Toolbar如何使用想必大家清楚地很,实际开发中标题栏的样式各色各样,因此其基本样式便不能满足我们的需求,这就需要我们自定义布局.打开ToolBar源码我们发现它继承ViewGroup,这就表示我们 ...
- Cannot load php5apache2_4.dll into server 问题的解决方法
解决方法,重新安装 VC9或 VC11 试试,或者全部安装VC9 VC11 注意:如果下载的 php5.5为32位版本, 那么安装的vc9或VC11 也必须是32位版本. 如果下 ...
- openID 无效
1.appid 和秘钥一定要是你目前正在测试公众号的数据,如果 appid 和 秘钥是测试账号的,而目标测试业务是在正式的公众号,及时能取到acces——token ,也会报无效的openid 遇到的 ...
- R in action读书笔记(20)第十五章 处理缺失数据的高级方法
处理缺失数据的高级方法 15.1 处理缺失值的步骤 一个完整的处理方法通常包含以下几个步骤: (1) 识别缺失数据: (2) 检查导致数据缺失的原因: (3) 删除包含缺失值的实例或用合理的数值代替( ...
- 前端Unicode转码的好处
站长工具支持Unicode转码:http://tool.chinaz.com/Tools/Unicode.aspx (这是一个网页标题)转码后 ------>变为:\u8fd9\u662f\u4 ...
- 【Gambit】Gambit使用教程
第一章 Gambit使用 Gambit介绍 网格的划分使用Gambit软件,首先要启动Gambit,在Dos下输入Gambit <filemane>,文件名如果已经存在,要加上参数-old ...
- Maven error in eclipse (pom.xml) : Failure to transfer org.apache.maven.plugins:maven-surefire-plugin:pom:2.12.4
i wanna make web project using the Maven to import automatically all libraries that i need, so i cho ...
- ALTER FUNCTION - 修改一个函数的定义
SYNOPSIS ALTER FUNCTION name ( [ type [, ...] ] ) RENAME TO newname DESCRIPTION 描述 ALTER FUNCTION 修改 ...
- docker 容器挂载主机目录,访问出现 cannot open directory /mnt/home/webroot/: Permission denied 的解决办法
问题原因及解决办法 原因是CentOS7中的安全模块selinux把权限禁掉了,至少有以下三种方式解决挂载的目录没有权限的问题: 1.在运行容器的时候,给容器加特权,及加上 --privileged= ...
- vue面试相关
(1)什么是mvvm? MVVM是Model-View-ViewModel的缩写.mvvm是一种设计思想.Model 层代表数据模型,也可以在Model中定义数据修改和操作的业务逻辑:View ...