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代码整合
随机推荐
- 外文翻译 《How we decide》赛场上的四分卫 第二节
本书导言翻译 本章第一节 "决定是如何做出来的",关于意识最神秘的问题之一.尽管我们时刻做着决定,但是我们没有感觉到大脑内部的一系列有关进程.NFL球探挑选候选球员的评分表中,决策 ...
- Oracle数据库的SQL语句之完整性约束——基础篇
SELECT * FROM tb_clazz;SELECT * FROM tb_student; INSERT INTO tb_clazz(code,NAME,bzr) VALUES('1401',' ...
- Log4net快速搭建
nuget安装log4net 2018.12.10当前版本为2.0.8 找到所在项目的[Properties->AssemblyInfo] 在底部加上 [assembly: log4net.Co ...
- 处理不同jQuery版本的兼容性问题
众所周知,jquery版本很多,而且有些版本的冲突也非常明显,有一些网上流传的很实用的插件是用A版本写的,但是要实现另各功能又必須用B版本.所以实现版本之間的和平相处很重要. 1.这里介绍一个函数,可 ...
- Vue + Django 2.0.6 学习笔记 6.1-6.2 商品类别数据接口
这两节主要是说获取商品类别的1 2 3类的列表和某个类的详情 我直接上代码吧 views.py: from .serializers import CategorySerializer class C ...
- day21-4 菱形继承问题(类的查找顺序)
目录 菱形继承问题 经典类(了解) 新式类 mro方法 菱形继承问题 在Python中子类可以同时继承多个父类,如A(B,C,D) 如果继承关系为非菱形结构,则会按照先找B这一条分支,然后再找C这条分 ...
- 所有的工作目录 都要svn_开头,并且要进行svn同步,你能保证你不删除,你保证不了非你!
所有的工作目录 都要svn_开头,并且要进行svn同步,你能保证你不删除,你保证不了非你! 血的代价啊~
- Spring Data Redis整体介绍 (一)
为什么使用Spring Data Redis 首先Spring Data Redis 是Spring 框架提供的用于操作Redis的客户端. Spring框架是一个全栈Java程序框架,通过DI.AO ...
- JS判断字符串包含的方法
本文实例讲述了JS判断字符串包含的方法.分享给大家供大家参考.具体如下: 1. 例子: 1 2 3 4 5 6 7 8 var tempStr = "tempText" ; var ...
- Android-ViewPagerIndicator框架使用——CirclePageIndicator
前言:Circle适用于应用新功能的展示页和商品的多张图片的展示功能. 1.定义布局文件:SampleCirclesDefault中添加了一个布局:simple_circles. 布局中定义一个Lin ...