codeforce 460DIV2 D题
感觉这个题不错,对拓扑排序有了更深的了解,用两种拓扑排序都写了些试试。
dfs
#include <cstdio>
#include <algorithm>
#include <iostream>
#include <cstring>
#include <vector>
using namespace std;
const int maxn=+;
char s[maxn];
vector<int>G[maxn];
int n,m;
int f[maxn][];
int vis[maxn];
int in[maxn];
bool dfs(int u){
vis[u]=-;
for(int i=;i<G[u].size();i++){
int v=G[u][i];
if(vis[v]==-)return false;
if(!vis[v]&&!dfs(v))return false;
for(int i=;i<;i++){
f[u][i]=max(f[u][i],f[v][i]);
}
}
f[u][s[u]-'a']++;
vis[u]=;
return true;
}
bool topo(){
memset(vis,,sizeof(vis));
for(int i=;i<=n;i++)if(!vis[i]){
if(!dfs(i))return false;
}
return true;
}
int main(){
while(scanf("%d%d",&n,&m)!=EOF){
memset(in,,sizeof(in));
memset(f,,sizeof(f));
scanf("%s",s+);
for(int i=;i<=n;i++)G[i].clear();
for(int i=;i<=m;i++){
int a,b;
scanf("%d%d",&a,&b);
G[a].push_back(b);
if(a==b){
cout<<"-1"<<endl;
return ;
}
}
if(!topo()){
cout<<"-1"<<endl;
continue;
}
int ans=;
for(int i=;i<=n;i++){
for(int j=;j<;j++){
ans=max(ans,f[i][j]);
}
}
cout<<ans<<endl;
}
return ;
}
bfs
#include <cstdio>
#include <algorithm>
#include <iostream>
#include <cstring>
#include <vector>
#include <queue>
using namespace std;
const int maxn=+;
vector<int>G[maxn];
queue<int>q;
char s[maxn];
int n,m;
int in[maxn],f[maxn][];
int main(){
scanf("%d%d",&n,&m);
memset(f,,sizeof(f));
memset(in,,sizeof(in));
scanf("%s",s+);
int a,b;
for(int i=;i<=m;i++){
scanf("%d%d",&a,&b);
G[a].push_back(b);
in[b]++;
}
for(int i=;i<=n;i++){
if(!in[i])q.push(i);
f[i][s[i]-'a']=;
}
while(!q.empty()){
int u=q.front();q.pop();
for(int i=;i<G[u].size();i++){
int v=G[u][i];
in[v]--;
if(!in[v])q.push(v);
for(int l=;l<;l++){
f[v][l]=max(f[v][l],f[u][l]+(s[v]==l+'a'));
}
}
}
for(int i=;i<=n;i++)if(in[i]){
cout<<"-1";
return ;
}
int ans=;
for(int i=;i<=n;i++){
for(int j=;j<;j++){
ans=max(ans,f[i][j]);
}
}
cout<<ans;
return ;
}
codeforce 460DIV2 D题的更多相关文章
- codeforce 461DIV2 F题
题意 题目给出n,k,要求找出一个1到n的子集,(a,b)的对数等于k:(a,b)满足a<b且b%a==0: 分析 还记不记得求素数的时候的欧拉筛!对就那样!如果把每个数字看作一个点的话,可以通 ...
- codeforce 461DIV2 E题
题意 有n棵树排成一排,每个树上都有c[i]只小鸟,只有站在树下才可以召唤小鸟,在i-th树下召唤k(k<=c[i])只小鸟需要消耗cost[i]*k的法力值,但是每召唤一只小鸟可以将法力值的上 ...
- codeforce 462DIV2 C题
题意 给出一个只含有1和2的序列,有n个元素,可以选择一段区间进行翻转操作,求再反转后的最大非递减子序列的长度 分析 太菜了只想出了N^2的做法.序列只有1和2,那么每个非递减子序列都会有一个分界点, ...
- codeforce 459DIV2 C题
题意 一串括号字符串,里面存在一些‘?’,其中‘?’既可以当作 '(' 又可以当作 ')' ,计算有多少对(l,r),在s中[sl,s(l+1),s(l+2),.....sr],内的括号是匹配的.n= ...
- Two progressions CodeForce 125D 思维题
An arithmetic progression is such a non-empty sequence of numbers where the difference between any t ...
- codeforce 457DIV2 C题
题意 你需要构造一个n个点m条边的无向有权图,要求这个图的MST中边权的和与从1到n的最短路长度都为素数 分析 可以想到这样一种贪心,在i到i+1直接连一条边,这样最短路和MST都会是同样的一些边.只 ...
- codeforce 457DIV2 B题
题意: 题目给出两个整数n,k,(n<=10^18,k<=10^5),求一个含有k个整数的序列,要求以2为底,以序列内数字为幂的和为n,其中序列内最大的数最小,若有多个序列满足条件,输出 ...
- DSU on Tree浅谈
DSU on tree 在之前的一次比赛中,学长向我们讲了了这样一个神奇的思想:DSU on tree(树上启发式合并),看上去就非常厉害--但实际上是非常暴力的一种做法;不过暴力只是看上去暴力,它在 ...
- ACDream手速赛2
地址:http://acdream.info/onecontest/1014 都是来自Codeforce上简单题. A. Boy or Girl 简单字符串处理 B. Walking in ...
随机推荐
- [置顶]
个人博客上线!欢迎来访~ http://onlyloveyd.cn/
简介 Hexo + Github + 个人域名 构建静态博客系统. 构建方法 参考 https://yq.aliyun.com/articles/64953 个人博客网站 Cherish Androi ...
- 【ES6】箭头函数
let getPrices = () => 4.55 console.log(getPrices()) let arr = ['apple', 'banana', 'orange'] arr.f ...
- HelloWorld 模块
helloworld.c 代码 #include <linux/init.h> #include <linux/module.h> MODULE_LICENSE("D ...
- [转载] FFMPEG结构体分析:AVFrame
注:写了一系列的结构体的分析的文章,在这里列一个列表: FFMPEG结构体分析:AVFrameFFMPEG结构体分析:AVFormatContextFFMPEG结构体分析:AVCodecContext ...
- ehcache缓存技术的特性
Ehcache是现在最流行的纯Java开源缓存框架,配置简单.结构清晰.功能强大,最初知道它,是从hibernate的缓存开始的.网上中文的EhCache材料以简单介绍和配置方法居多,如果你有这方面的 ...
- YARN学习笔记——Overview and Architecture
YARN的简介 什么是YARN MRv1的架构和缺陷 经典MapReduce的局限性 解决可伸缩性问题 YARN的架构 一个可运行任何分布式应用程序的集群 YARN中的应用程序提交 YARN的其他特性 ...
- JavaScript 冒号(:)详解
1.switch语句分支 2.?:三元表达式的false 3.声明对象直接量的成员 4.声明标签 1和2相信地球人都知道吧?如果有人不知道,那我改成地球上的程序员都知道,哈哈 3.对象直接量我们也经常 ...
- 无敌JS关闭当前窗口代码,不弹出确认提示
echo "<script type='text/javascript'>window.opener=null;window.open('','_self');window.cl ...
- Browserify使用指南(转)
让浏览器加载Nodejs模块 目前NPM上有二十多万个NodeJS模块,它们都是通过CMD的方式打包的,除了特定的可以使用CMD模块加载器加载的模块,大部分nodejs模块无法直接使用到浏览器环境中. ...
- maven打war包后无法依赖本地工程的jar包,造成debug时跳到class文件而不是本地java文件
问题现象:项目结构如下 growup-service | - - - - - -growup-api | - - - - - -growup-core | - - - - - -growup-war ...