Codeforces 1220E. Tourism
这是一道英语题,首先要读懂题目:
$\text{Alex believes that his trip will be interesting only if he will not use any road twice in a row.}$
这句话意思是不会连续走一条路,但是同一条路是可以走多次的
所以对于一个边双联通分量,是可以全部走一遍并可以从联通分量里的任意一个点离开的
所以就可以直接缩点,然后就变成树上问题
发现对于树上的点,如果它的大小为 $1$ 并且它的儿子都没法返回 ,那么到达它以后就没法返回,反之一定可以返回(自己内部绕一圈或者走到儿子再回来即可)
考虑树上搞搞 $dp$,设 $f[x]$ 表示走完 $x$ 的子树以后并能返回 $x$ 的父亲时得到的最大价值,$g[x]$ 表示走完 $x$ 的子树不返回的最大价值
那么对于一个可以返回父亲的的子节点 $v$ ,有转移:$f[x]+=f[v]$
对于 $g[x]$ ,比较复杂,首先 $g[x]$ 可以是 $x$ 走完所有可以返回的儿子,最后再走到一个不能返回的儿子:$g[x]=f[x]+g[v]$
也可以是走到某个虽然可以返回,但是没必要返回的儿子里面不返回(因为儿子再往下走到不能返回的节点最终价值可能更大):$g[x]=g[x]-f[v]+g[v]$,这里减去 $f[v]$ 是因为之前加上了
然后最后答案就是 $g[root]$
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<cmath>
#include<vector>
using namespace std;
typedef long long ll;
inline int read()
{
int x=,f=; char ch=getchar();
while(ch<''||ch>'') { if(ch=='-') f=-; ch=getchar(); }
while(ch>=''&&ch<='') { x=(x<<)+(x<<)+(ch^); ch=getchar(); }
return x*f;
}
const int N=4e5+;
int n,m,a[N];
int fir[N],from[N<<],to[N<<],cntt;
inline void add(int a,int b) { from[++cntt]=fir[a]; fir[a]=cntt; to[cntt]=b; }
int dfn[N],low[N],bel[N],st[N],sz[N],Top,cnt,tot;
void Tarjan(int x,int fa)
{
dfn[x]=low[x]=++cnt; st[++Top]=x;
for(int i=fir[x];i;i=from[i])
{
int &v=to[i]; if(v==fa) continue;
if(!dfn[v]) Tarjan(v,x),low[x]=min(low[x],low[v]);
else if(!bel[v]) low[x]=min(low[x],dfn[v]);
}
if(low[x]!=dfn[x]) return;
tot++; while(st[Top]!=x) bel[st[Top--]]=tot;
bel[st[Top--]]=tot;
}
struct edge {
int u,v;
edge (int _u=,int _v=) { u=_u,v=_v; }
inline bool operator < (const edge &tmp) const {
return u!=tmp.u ? u<tmp.u : v<tmp.v;
}
inline bool operator == (const edge &tmp) const {
return u==tmp.u&&v==tmp.v;
}
};
vector <edge> tmp;
vector <int> V[N];
ll val[N];
void build()
{
for(int i=;i<=n;i++) val[bel[i]]+=a[i],sz[bel[i]]++;
for(int i=;i<=n;i++)
for(int j=fir[i];j;j=from[j])
{
int &v=to[j]; if(bel[i]==bel[v]) continue;
tmp.push_back(edge(bel[i],bel[v]));
}
sort(tmp.begin(),tmp.end());
tmp.resize( unique(tmp.begin(), tmp.end()) - tmp.begin() );
for(auto E: tmp) V[E.u].push_back(E.v);
}
ll f[N],g[N];
bool ret[N];
void dfs(int x,int fa)
{
f[x]=val[x]; if(sz[x]>) ret[x]=;
ll mx=;
for(auto v:V[x])
{
if(v==fa) continue;
dfs(v,x);
if(ret[v]) f[x]+=f[v],ret[x]=;
else mx=max(mx,g[v]);
}
g[x]=f[x]+mx;
for(auto v:V[x])
if(v!=fa&&ret[v])
g[x]=max(g[x], f[x]-f[v]+g[v] );
}
int main()
{
n=read(),m=read(); int x,y;
for(int i=;i<=n;i++) a[i]=read();
for(int i=;i<=m;i++)
{
x=read(),y=read();
add(x,y); add(y,x);
}
int s=read();
for(int i=;i<=n;i++) if(!dfn[i]) Tarjan(i,);
build();
dfs(bel[s],);
printf("%lld\n",g[bel[s]]);
return ;
}
Codeforces 1220E. Tourism的更多相关文章
- CF-diary
(做题方式:瞟题解然后码) 1238E. Keyboard Purchase \(\texttt{Difficulty:2200}\) 题意 给你一个长度为 \(n\) 的由前 \(m\) 个小写字母 ...
- Codeforces Round #586 (Div. 1 + Div. 2) E. Tourism
链接: https://codeforces.com/contest/1220/problem/E 题意: Alex decided to go on a touristic trip over th ...
- Codeforces 1220 E Tourism
题面 可以发现一个边双必然是可以随意走的,所以我们就把原图求割边然后把边双缩成一个点,然后就是一个树上dp了. #include<bits/stdc++.h> #define ll lon ...
- Codeforces 杂题集 2.0
记录一些没有写在其他随笔中的 Codeforces 杂题, 以 Problemset 题号排序 1326D2 - Prefix-Suffix Palindrome (Hard version) ...
- Codeforces Round #635 (Div. 2) 题解
渭城朝雨浥轻尘,客舍青青柳色新. 劝君更尽一杯酒,西出阳关无故人.--王维 A. Ichihime and Triangle 网址:https://codeforces.com/contest/133 ...
- python爬虫学习(5) —— 扒一下codeforces题面
上一次我们拿学校的URP做了个小小的demo.... 其实我们还可以把每个学生的证件照爬下来做成一个证件照校花校草评比 另外也可以写一个物理实验自动选课... 但是出于多种原因,,还是绕开这些敏感话题 ...
- 【Codeforces 738D】Sea Battle(贪心)
http://codeforces.com/contest/738/problem/D Galya is playing one-dimensional Sea Battle on a 1 × n g ...
- 【Codeforces 738C】Road to Cinema
http://codeforces.com/contest/738/problem/C Vasya is currently at a car rental service, and he wants ...
- 【Codeforces 738A】Interview with Oleg
http://codeforces.com/contest/738/problem/A Polycarp has interviewed Oleg and has written the interv ...
随机推荐
- JDK动态代理、CGLIB动态代理详解
Spring的AOP其就是通过动态代理的机制实现的,所以理解动态代理尤其重要. 动态代理比静态代理的好处: 1.一个动态代理类可以实现多个业务接口.静态代理的一个代理类只能对一个业务接口的实现类进行包 ...
- django xadmin安装
安装方式一: 下载xadmin源码文件,下载之后,解压缩,将解压目录中的xadmin文件夹拷贝到项目项目文件中.下载地址:https://codeload.github.com/sshwsfc/xad ...
- orale数据库的SQL查询
创建学生表,成绩表,教师表,课程表,分别添加数据信息 create table student( sno ) primary key, sname ), sage ), ssex ) ); cre ...
- (十六)C语言之函数
- Linux下压缩和解压命令
http://man.linuxde.net/tar
- Mybatis多值传递的方式
一共有三种方式 1.参数传入Map 2参数使用@params 3.直接使用时用#{0},#{2} 参考网址 :https://www.2cto.com/database/201409/338155.h ...
- 再谈用Excel计算年龄
有的时候,对于客人的信息并不是全知,那么身份证就可能用15位来代替,这个时候怎么计算年龄呢?有一个很简单的公式,可以一次性计算15位或18位身份证的年龄. 首先,需要判断一下,这个身份证是15位还是1 ...
- LC 672. Bulb Switcher II
There is a room with n lights which are turned on initially and 4 buttons on the wall. After perform ...
- GitHub:Oracle
ylbtech-GitHub:Oracle 1.返回顶部 2.返回顶部 3.返回顶部 4.返回顶部 5.返回顶部 1. https://github.com/oracle 2. 6 ...
- 学习Oracle数据库入门到精通教程资料合集
任何大型信息系统,都需要有数据库管理系统作为支撑.其中,Oracle以其卓越的性能获得了广泛的应用.本合集汇总了学习Oracle数据库从入门到精通的30份教程资料. 资料名称 下载地址 超详细Orac ...