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代码整合
随机推荐
- JavaScript异常处理和事件处理
异常捕获 1.异常: 当JavaScript引擎执行JavaScript代码时,发生了错误,导致程序停止运行 2.异常抛出: 当异常产生,并且将这个异常生成一个错误信息 3.异常捕 ...
- [转]Sublime Text操作
原文地址:http://www.madongdong.me/sublime-text3%E4%BD%BF%E7%94%A8%E6%8C%87%E5%8D%97/ 作者:马东东 前言(Prologue) ...
- 详解Android Activity启动模式
相关的基本概念: 1.任务栈(Task) 若干个Activity的集合的栈表示一个Task. 栈不仅仅只包含自身程序的Activity,它也可以跨应用包含其他应用的Activity,这样有利于 ...
- 在windows下用python调用darknet的yolo接口
0,目标 本人计算机环境:windows7 64位,安装了vs2015专业版,python3.5.2,cygwin,opencv3.3,无gpu 希望实现用python调用yolo函数,实现物体检测. ...
- java规范与标准?
所谓规范,即指由很多人同时遵守的行为或理论. java的规范并不是指其中一种,而是有很多种,比如java编码规范,java命名规范,java虚拟机规范等等,甚至于一个编码规范都有很多种,不同的公司.组 ...
- js 复制文字、 复制链接到粘贴板
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...
- C# 获取目录下文件
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; usin ...
- CAD使用SetxDataString写数据(com接口)
主要用到函数说明: MxDrawEntity::SetxDataString 写一个字符串扩展数据,详细说明如下: 参数 说明 [in] BSTR val 字符串值 szAppName 扩展数据名称 ...
- 神经机器翻译(NMT)开源工具
博客地址:http://blog.csdn.net/wangxinginnlp/article/details/52944432 工具名称:T2T: Tensor2Tensor Transformer ...
- mysql负载均衡
一.docker安装haproxy:docker pull haproxy 二.配置haproxy(参考url:https://zhangge.net/5125.html),vim /usr/loca ...