最长路:

设置一个虚拟起点和虚拟终点,每个点与起点间一条负边,值为这个点书的价值的相反数(代表买书花钱),每个点与终点连一条正边,值为这个点的书的价格(代表卖书赚钱)。

然后按照图中给的边建无向边,权值为负(代表路费)。跑最长路,spfa改一下松弛条件就行

#include<cstdio>
#include<vector>
#include<cstring>
#include<queue>
using namespace std;
const int maxn = +;
const int inf = 1e9;
int n;
int cost[+];
struct node
{
int to;
int w;
node(int a,int b):to(a),w(b){}
};
vector<node>G[maxn];
int dist[maxn],vis[maxn];
void spfa()
{
queue<int>q;
for(int i=;i<=n+;i++) dist[i] = -inf;
memset(vis,,sizeof(vis));
q.push(); vis[] = ; dist[] = ;
while(!q.empty())
{
int u = q.front(); q.pop(); int len = G[u].size();
for(int i=;i<len;i++)
{
int v = G[u][i].to;
int w = G[u][i].w;
if(dist[v]<dist[u]+w)
{
dist[v] = dist[u] + w;
if(!vis[v]){vis[v] = ; q.push(v); }
}
}
vis[u] = ;
}
printf("%d\n",dist[n+]);
}
int main()
{
int cases,u,v,w;
scanf("%d",&cases);
while(cases--)
{
scanf("%d",&n);
for(int i=;i<n+;i++) G[i].clear();
for(int i=;i<=n;i++) scanf("%d",&cost[i]);
for(int i=;i<=n;i++)
{
G[].push_back(node(i,-cost[i]));
G[i].push_back(node(n+,cost[i]));
}
for(int i=;i<n;i++)
{
scanf("%d%d%d",&u,&v,&w);
G[u].push_back(node(v,-w));
G[v].push_back(node(u,-w));
}
spfa();
}
return ;
}

树形DP:

设1为根节点,假设一开始一个人身上的钱为0。

我们设dp[i][0]表示从根节点走到i及其子树并中任一点买入一本书后这个人身上钱的最大值(显然是负的)。

dp[i][1]表示从根节点走到i及其子树并中任一点卖出一本书后这个人身上钱的最大值(可正可负)。

那么我们对这棵树进行一次树形DP即可,dfs后对每个节点更新收益最大值,单点的计算方法为:w=dp[i][0]+dp[i][1]

(由于前者是负的,相当于收入减去总花费)

#include <cstdio>
#include <vector>
#include <cstring>
#include <algorithm>
using namespace std;
#define mst(a,b) memset((a),(b),sizeof(a))
#define rush() int T;scanf("%d",&T);while(T--) typedef long long ll;
const int maxn = ;
const ll mod = 1e9+;
const int INF = 0x3f3f3f3f;
const double eps = 1e-; struct node
{
int v,w;
node(int _v,int _w):v(_v),w(_w) {}
}; int n,ans;
int val[maxn];
int dp[maxn][];
vector<node>vec[maxn]; void dfs(int u,int pre)
{
dp[u][]=-val[u];
dp[u][]=val[u];
for(int i=;i<vec[u].size();i++)
{
int v=vec[u][i].v;
int w=vec[u][i].w;
if(v==pre) continue;
dfs(v,u);
dp[u][]=max(dp[u][],dp[v][]-w);
dp[u][]=max(dp[u][],dp[v][]-w);
}
ans=max(ans,dp[u][]+dp[u][]);
} int main()
{
int u,v,w;
rush()
{
scanf("%d",&n);
for(int i=;i<=n;i++)
{
vec[i].clear();
}
for(int i=;i<=n;i++)
{
scanf("%d",&val[i]);
}
for(int i=;i<n;i++)
{
scanf("%d%d%d",&u,&v,&w);
vec[u].push_back(node(v,w));
vec[v].push_back(node(u,w));
}
ans=;
dfs(,-);
printf("%d\n",ans);
}
return ;
}

网络流:

直接构图 费用流跑一遍

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<cstdlib>
#include<string.h>
#include<set>
#include<vector>
#include<queue>
#include<stack>
#include<map>
#include<cmath>
typedef long long ll;
typedef unsigned long long LL;
using namespace std;
const double PI=acos(-1.0);
const double eps=0.0000000001;
const int INF=0x3f3f3f3f;
const int N=+;
int a[N];
int head[N];
int dis[N];
int pre[N];
int vis[N];
int tot;
int m,n;
struct node{
int from,to,next,flow,cost;
}edge[N<<];
void init(){
memset(head,-,sizeof(head));
tot=;
}
void add(int u,int v,int c,int cost){
edge[tot].from=u;
edge[tot].to=v;
edge[tot].flow=c;
edge[tot].cost=cost;
edge[tot].next=head[u];
head[u]=tot++;
edge[tot].from=v;
edge[tot].to=u;
edge[tot].flow=;
edge[tot].cost=-cost;
edge[tot].next=head[v];
head[v]=tot++;
}
int spfa(int s,int t){
memset(pre,-,sizeof(pre));
memset(dis,INF,sizeof(dis));
memset(vis,,sizeof(vis));
queue<int>q;
dis[s]=;
vis[s]=;
q.push(s);
while(!q.empty()){
int x=q.front();
q.pop();
vis[x]=;
for(int i=head[x];i!=-;i=edge[i].next){
int v=edge[i].to;
if(edge[i].flow&&dis[v]>dis[x]+edge[i].cost){
dis[v]=edge[i].cost+dis[x];
pre[v]=i;
if(vis[v]==){
vis[v]=;
q.push(v);
} }
}
}
if(pre[t]==-)return ;
return ;
}
int MCMF(int s,int t){
int flow=;
int cost=;
while(spfa(s,t)){
int minn=INF;
for(int i=pre[t];i!=-;i=pre[edge[i].from]){
minn=min(minn,edge[i].flow);
}
for(int i=pre[t];i!=-;i=pre[edge[i].from]){
edge[i].flow=edge[i].flow-minn;
edge[i^].flow=edge[i^].flow+minn;
cost=edge[i].cost+cost;
// cout<<cost<<endl;
}
flow=flow+minn;
}
return cost;
}
int main(){
int tt;
scanf("%d",&tt);
while(tt--){
init();
scanf("%d",&n);
for(int i=;i<=n;i++){
scanf("%d",&a[i]);
}
int s=;
int s1=n+;
int t=n+;
add(s,s1,,);
for(int i=;i<=n;i++){
add(s1,i,,-a[i]);
}
for(int i=;i<=n;i++){
add(i,t,,a[i]);
}
for(int i=;i<=n-;i++){
int u,v,cost;
scanf("%d%d%d",&u,&v,&cost);
add(u,v,,cost);
add(v,u,,cost);
}
cout<<abs(MCMF(s,t))<<endl;
}
}

hdu 6501 transaction transaction transaction 最长路/树形DP/网络流的更多相关文章

  1. 中南大学oj 1317 Find the max Link 边权可以为负的树上最长路 树形dp 不能两遍dfs

    http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1317经典问题:树上最长路,边权可以为负值的,树形dp,不能用两边dfs.反例:5 41 2 22 ...

  2. HihoCoder1050 树中的最长路 树形DP第三题(找不到对象)

    题意:求出的树中距离最远的两个结点之间相隔的距离. 水题一道,以前只会用路的直径来解. 代码如下: #include<cstdio> #include<cstdlib> #in ...

  3. [HDU 1317]XYZZY[SPFA变形][最长路]

    题意: 一个图, 点权代表走到该点可获得的能量值. 可正可负. 一个人从1 号出发,带有100点能量. 问是否有一种方案可使人在能量值>0的时候走到n. 思路: 这个题首先要注意点权. 其实就是 ...

  4. HDU 3249 Test for job (有向无环图上的最长路,DP)

     解题思路: 求有向无环图上的最长路.简单的动态规划 #include <iostream> #include <cstring> #include <cstdlib ...

  5. hdu 1224 Free DIY Tour(最长的公路/dp)

    http://acm.hdu.edu.cn/showproblem.php? pid=1224 基础的求最长路以及记录路径. 感觉dijstra不及spfa好用,wa了两次. #include < ...

  6. NYOJ_矩形嵌套(DAG上的最长路 + 经典dp)

    本题大意:给定多个矩形的长和宽,让你判断最多能有几个矩形可以嵌套在一起,嵌套的条件为长和宽分别都小于另一个矩形的长和宽. 本题思路:其实这道题和之前做过的一道模版题数字三角形很相似,大体思路都一致,这 ...

  7. POJ 1949 Chores(DAG上的最长路 , DP)

    题意: 给定n项任务, 每项任务的完成用时t和完成每项任务前需要的k项任务, 求把所有任务完成的最短时间,有当前时间多项任务都可完成, 那么可以同时进行. 分析: 这题关键就是每项任务都会有先决条件, ...

  8. HDU 4616 Game (搜索)、(树形dp)

    题目地址:http://acm.hdu.edu.cn/showproblem.php?pid=4616 这道题目数据可能比较弱,搜索都可以AC,但是不敢写,哎…… 搜索AC代码: #include & ...

  9. HDU - 1054 Strategic Game(二分图最小点覆盖/树形dp)

    d.一颗树,选最少的点覆盖所有边 s. 1.可以转成二分图的最小点覆盖来做.不过转换后要把匹配数除以2,这个待细看. 2.也可以用树形dp c.匈牙利算法(邻接表,用vector实现): /* 用ST ...

随机推荐

  1. 1.2.1 Maven到底是什么鬼

    解释之前,提1个小问题. 1.1.假如你正在Eclipse下开发两个Java项目,姑且把它们称为A.B,其中A项目中的一些功能依赖于B项目中的某些类,那么如何维系这种依赖关系的呢? 很简单,这不就是跟 ...

  2. leetcode 116填充每个节点的下一个右侧节点指针

    time O(n) ,sapce O(n) /* // Definition for a Node. class Node { public: int val; Node* left; Node* r ...

  3. Ubuntu下查找nginx日志

    使用awk检测nginx日志, 按小时计数 awk '{split($4,array,"[");if(array[2]>="29/May/2016:00:00:26 ...

  4. java中常见异常总汇,附解释

    Java Exception: 1.Error 2.Runtime Exception 运行时异常3.Exception 4.throw 用户自定义异常 异常类分两大类型:Error类代表了编译和系统 ...

  5. 我非要捅穿这 Neutron(三)架构分析与代码实现篇(基于 OpenStack Rocky)

    目录 文章目录 目录 Neutron 的软件架构分析与实现 Neutron Server 启动流程 获取 WSGI Application Core API & Extension API C ...

  6. 阶段3 2.Spring_09.JdbcTemplate的基本使用_1 今日课程内容介绍

  7. 阶段3 2.Spring_02.程序间耦合_3 程序的耦合和解耦的思路分析1

    编译时没有对应需要的jar包就报错.这特性就理解为程序的耦合 这种方式,它不是个错误而是个异常.编译的时候没有问题.运行时才会报错. 把注释的代码放开 程序可以正常运行 解决类之前依赖的思路 一个依赖 ...

  8. Mysql查询语句中字符型字段不区分大小写解决方法

    项目中和前端联调的时候,发现Mysql查询语句中字符型字段值过滤是不区分大小写的,之前没有关注过这个设置,特意去网上看了下,原因是Mysql中“COLLATE”属性区分大小写,而该属性默认值为“utf ...

  9. 学习SASS

    这几天白老师叫我们css的扩展技术,有什么LESS,还有SASS(我还以为是SAS...QAQ),LESS由于功能比较简单,用的也比较少所以我们重点学习了SASS.简单地说SASS是一种CSS的开发工 ...

  10. ibatis使用iterate实现批量插入insert正确写法

    由于想批量入库提升效率,最近实现了ibatis的批量插入,结果一直报错 :StringIndexOutOfBoundsException ,原来是value中的格式不正确. 本人邮箱:techqu@1 ...