洛谷P3119 USACO15JAN 草鉴定
题目描述
In an effort to better manage the grazing patterns of his cows, Farmer John has installed one-way cow paths all over his farm. The farm consists of N fields, conveniently numbered 1..N, with each one-way cow path connecting a pair of fields. For example, if a path connects from field X to field Y, then cows are allowed to travel from X to Y but not from Y to X.
Bessie the cow, as we all know, enjoys eating grass from as many fields as possible. She always starts in field 1 at the beginning of the day and visits a sequence of fields, returning to field 1 at the end of the day. She tries to maximize the number of distinct fields along her route, since she gets to eat the grass in each one (if she visits a field multiple times, she only eats the grass there once).
As one might imagine, Bessie is not particularly happy about the one-way restriction on FJ's paths, since this will likely reduce the number of distinct fields she can possibly visit along her daily route. She wonders how much grass she will be able to eat if she breaks the rules and follows up to one path in the wrong direction. Please compute the maximum number of distinct fields she can visit along a route starting and ending at field 1, where she can follow up to one path along the route in the wrong direction. Bessie can only travel backwards at most once in her journey. In particular, she cannot even take the same path backwards twice.
约翰有n块草场,编号1到n,这些草场由若干条单行道相连。奶牛贝西是美味牧草的鉴赏家,她想到达尽可能多的草场去品尝牧草。
贝西总是从1号草场出发,最后回到1号草场。她想经过尽可能多的草场,贝西在通一个草场只吃一次草,所以一个草场可以经过多次。因为草场是单行道连接,这给贝西的品鉴工作带来了很大的不便,贝西想偷偷逆向行走一次,但最多只能有一次逆行。问,贝西最多能吃到多少个草场的牧草。
这道题还是很复杂的。
根据去品尝牧草,我们很容易想到,如果一些草场在一个连通分量里面,只要到达这个连通分量,里面所有的草场就能到达,所以Tarjan缩点是无疑的了。
缩完点以后,我们保证不存在环,这样就可以跑一遍最长路,其中边权是每个连通分量的大小。
但是,还有能倒着走一条边的情况。这里就需要用到分层最短路。
在对于缩完点的图中,边u->v,我们将v连向u+n,代表下一层,当然u+n也要连到v+n,这样,我们能从每一个点,倒着走到下一层,但是无法从下一层走回来。
然后再输出起点连通分量+n的最长路dis值就好了。
但是注意,如果整个图缩完点是一个连通分量,那么要输出起点连通分量,不用加n。
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cstdlib>
#include <stack>
#include <queue>
#define REP(i,k,n) for(int i=k;i<=n;i++)
#define in(a) a=read()
#define MAXN 200010
using namespace std;
inline int read(){
int x=,f=;
char ch=getchar();
for(;!isdigit(ch);ch=getchar())
if(ch=='-')
f=-;
for(;isdigit(ch);ch=getchar())
x=x*+ch-'';
return x*f;
}
stack <int> S;
queue <int> Q;
int n,m;
int total1,head1[MAXN],to1[MAXN],nxt1[MAXN];
int total2,head2[MAXN<<],to2[MAXN<<],nxt2[MAXN<<],val[MAXN<<];
int num,cnt,dfn[MAXN],low[MAXN],vis[MAXN],bel[MAXN],size[MAXN],dis[MAXN];
inline void adl1(int a,int b){
total1++;
to1[total1]=b;
nxt1[total1]=head1[a];
head1[a]=total1;
return ;
}
inline void adl2(int a,int b,int c){
total2++;
to2[total2]=b;
val[total2]=c;
nxt2[total2]=head2[a];
head2[a]=total2;
return ;
}
inline void tarjan(int u){
dfn[u]=low[u]=++cnt;
S.push(u),vis[u]=;
for(int e=head1[u];e;e=nxt1[e]){
if(!dfn[to1[e]]){
tarjan(to1[e]);
low[u]=min(low[u],low[to1[e]]);
}
else if(vis[to1[e]]) low[u]=min(low[u],dfn[to1[e]]);
}
if(dfn[u]==low[u]){
num++;
while(!S.empty() && S.top()!=u) size[num]++,bel[S.top()]=num,vis[S.top()]=,S.pop();
if(!S.empty()) size[num]++,bel[S.top()]=num,vis[S.top()]=,S.pop();
}
return ;
}
inline void spfa(){
Q.push(bel[]);
dis[bel[]]=;
while(!Q.empty()){
int u=Q.front();
Q.pop(),vis[u]=;
for(int e=head2[u];e;e=nxt2[e])
if(dis[to2[e]]<dis[u]+val[e]){
dis[to2[e]]=dis[u]+val[e];
if(!vis[to2[e]]) vis[to2[e]]=,Q.push(to2[e]);
}
}
return ;
}
int main(){
in(n),in(m);
int a,b;
REP(i,,m) in(a),in(b),adl1(a,b);
REP(i,,n)
if(!dfn[i])
tarjan(i);
REP(u,,n)
for(int e=head1[u];e;e=nxt1[e])
if(bel[u]!=bel[to1[e]]){
adl2(bel[u],bel[to1[e]],size[bel[u]]);
adl2(bel[u]+num,bel[to1[e]]+num,size[bel[u]]);
adl2(bel[to1[e]],bel[u]+num,size[bel[to1[e]]]);
}
adl2(bel[],bel[]+num,size[bel[]]);
memset(vis,,sizeof(vis));
spfa();
cout<<dis[bel[]+num]<<endl;
return ;
}
洛谷P3119 USACO15JAN 草鉴定的更多相关文章
- 洛谷 P3119 [USACO15JAN]草鉴定Grass Cownoisseur 解题报告
P3119 [USACO15JAN]草鉴定Grass Cownoisseur 题目描述 约翰有\(n\)块草场,编号1到\(n\),这些草场由若干条单行道相连.奶牛贝西是美味牧草的鉴赏家,她想到达尽可 ...
- 洛谷——P3119 [USACO15JAN]草鉴定Grass Cownoisseur
P3119 [USACO15JAN]草鉴定Grass Cownoisseur 题目描述 In an effort to better manage the grazing patterns of hi ...
- 洛谷 P3119 [USACO15JAN]草鉴定Grass Cownoisseur (SCC缩点,SPFA最长路,枚举反边)
P3119 [USACO15JAN]草鉴定Grass Cownoisseur 题目描述 In an effort to better manage the grazing patterns of hi ...
- 洛谷 P3119 [USACO15JAN]草鉴定Grass Cownoisseur
屠龙宝刀点击就送 Tarjan缩点+拓扑排序 以后缩点后建图看n范围用vector ,或者直接用map+vector 结构体里数据要清空 代码: #include <cstring> #i ...
- 洛谷—— P3119 [USACO15JAN]草鉴定Grass Cownoisseur || BZOJ——T 3887: [Usaco2015 Jan]Grass Cownoisseur
http://www.lydsy.com/JudgeOnline/problem.php?id=3887|| https://www.luogu.org/problem/show?pid=3119 D ...
- 洛谷3119 [USACO15JAN]草鉴定Grass Cownoisseur
原题链接 显然一个强连通分量里所有草场都可以走到,所以先用\(tarjan\)找强连通并缩点. 对于缩点后的\(DAG\),先复制一张新图出来,然后对于原图中的每条边的终点向新图中该边对应的那条边的起 ...
- P3119 [USACO15JAN]草鉴定Grass Cownoisseur
题目描述 In an effort to better manage the grazing patterns of his cows, Farmer John has installed one-w ...
- luogu P3119 [USACO15JAN]草鉴定Grass Cownoisseur
题目描述 In an effort to better manage the grazing patterns of his cows, Farmer John has installed one-w ...
- P3119 [USACO15JAN]草鉴定Grass Cownoisseur 分层图或者跑两次最长路
https://www.luogu.org/problemnew/show/P3119 题意 有一个有向图,允许最多走一次逆向的路,问从1再走回1,最多能经过几个点. 思路 (一)首先先缩点.自己在缩 ...
随机推荐
- Linux修改主机名【转】
一.永久修改修改/etc/sysconfig/network,在里面指定主机名称HOSTNAME=然后执行命令hostname 主机名这个时候可以注销一下系统,再重登录之后就行了. 或者修改/etc/ ...
- SQL语句帮助大全
--删除约束 Status:字段名 alter table Table_1 drop constraint Status; --添加约束 --Status :字段名 t_Pay_Order:表名 默认 ...
- 十五、springboot集成定时任务(Scheduling Tasks)(二)之(线程配置)
配置类: /** * 定时任务线程配置 * */ @Configuration public class SchedulerConfig implements SchedulingConfigurer ...
- nodejs 接收上传的图片
1.nodejs接收上传的图片主要是使用formidable模块,服务器是使用的express搭建. 引入formidable var formidable = require('./node_mod ...
- Python访问MySQL(1):初步使用PyMySQL包
Windows 10家庭中文版,MySQL 5.7.20 for Win 64,Python 3.6.4,PyMySQL 0.8.1,2018-05-08 ---- 使用Python访问MySQL数据 ...
- 【前端vue开发】vue单页应用添加百度统计
前言 申请百度统计后,会得到一段JS代码,需要插入到每个网页中去,在Vue.js项目首先想到的可能就是,把统计代码插入到index.html入口文件中,这样就全局插入,每个页面就都有了;这样做就涉及到 ...
- MyBatis3-实现MyBatis分页
此文章中的例子是沿用上一篇文章http://www.cnblogs.com/EasonJim/p/7055499.html的Spring MVC集成的例子改装的. MyBatis分页有以下方式实现: ...
- TImage 显示 资源中 的图片、TResourceStream、资源文件
unit Unit5; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System ...
- EXEC与sp_executesql的区别及应用
在项目中需要将内部DECLARE的参数通过EXEC赋值后再作为下面一个EXEC参数的时候,发现都使用EXEC时,问题就不是那么简单了.趁着没有睡意研究下.EXEC的使用与缺点EXEC命令有两种用法,一 ...
- Effective STL 学习笔记14: Use reserve to avoid unnecessary reallocations.
vector 和 string 容器在动态插入一个新的对象时,如果容器内空间不够,该容器会: 重新分配空间 通常的做法是分配当前 Capacity 大小两倍的空间. 将旧空间中的所有元素拷贝进新的空间 ...