Codeforces Round #374 (Div. 2)【A,B,C】
= =C题这种DP打的少吧,记得以前最短路分层图打过这样子的,然后比赛前半个小时才恍然大雾。。。然后瞎几把还打错了,还好A,B手速快。。上分了;
A题:
计算B的连续个数的组数,每组的连续个数;
水题;
#include <iostream>
#include<cstdio>
#include<string.h>
#include<algorithm>
using namespace std;
char s[110];
int a[110];
int main()
{
int n;
scanf("%d",&n);
scanf("%s",s);
int num=0;
int flag=0;
memset(a,0,sizeof(a));
for(int i=0;i<n;i++)
{
if(s[i]=='B')
{
if(flag)
{
a[num]++;
}
else
{
a[++num]++;
flag=1;
}
}
else
{
flag=0;
}
}
printf("%d\n",num);
for(int i=1;i<=num;i++)
printf("%d ",a[i]);
return 0;
}
B题:
求最少开锁,最晚开锁;= =最后一个是密码;
这题纯暴力模拟,水;
#include <iostream>
#include<cstdio>
#include<string.h>
#include<algorithm>
using namespace std;
/*
*/
char s[110][110];
int main()
{
int n,k;
scanf("%d%d",&n,&k);
for(int i=1;i<=n+1;i++)
{
scanf("%s",s[i]);
}
int temp=strlen(s[n+1]);
int mini=0;
int mimi=0;
for(int i=1;i<=n;i++)
{
int x=strlen(s[i]);
if(x<temp)
mini++;
if(x<=temp&&strcmp(s[i],s[n+1])!=0)
mimi++;
}
int ans1=0;
if(mini)
{
for(int i=1;i<=mini;i++)
{
if(i%k==0)
ans1+=5;
ans1++;
}
}
printf("%d ",ans1+1);
int ans2=0;
if(mimi)
{
for(int i=1;i<=mimi;i++)
{
if(i%k==0)
ans2+=5;
ans2++;
}
}
printf("%d\n",ans2+1);
return 0;
}
C题:
求1-n的路径长度<=T范围内,最多能经过几个点;
思路:
dp[i][j]代表到达 i 经 过 j 个点的最小花费;
然后BFS每个可到达,里面写个小DP;
//注意vis数组开bool,不知道不开会不会MLE,还有图的话最好用链表模拟;
#include <bits/stdc++.h>
using namespace std;
//dp[i][j]代表到达第i个结点,经过j个结点的最短时间;
typedef pair<int,int> PP;
const int INF=0x3f3f3f3f;
int dp[5001][5001];
bool vis[5001][5001];
int pre[5001][5001];
int n,m,T;
int i,j,k;
int u,v,w;
vector<PP>ma[5001];
queue<PP>q;
void bfs()
{
vis[1][1]=true;
dp[1][1]=0;
q.push({1,1});
while(!q.empty())
{
PP u=q.front();q.pop();
int x=u.first;
int y=u.second;
vis[x][y]=false;
v=ma[x].size();
for(i=0;i<v;i++)
{
int xx=ma[x][i].first;
int co=ma[x][i].second;
if(dp[x][y]+co>T)
continue;
if(dp[xx][y+1]>dp[x][y]+co)
{
dp[xx][y+1]=dp[x][y]+co;
pre[xx][y+1]=x;
if(vis[xx][y+1]) continue;
vis[xx][y+1]=true;
q.push({xx,y+1});
}
}
}
}
void print()
{
vector<int>res;
res.push_back(n);
while(pre[n][j])
{
res.push_back(pre[n][j]);
n=pre[n][j];
j--;
}
int ans=res.size();
printf("%d\n",ans);
for(i=ans-1;i>=0;i--)
{
printf("%d ",res[i]);
}
}
int main()
{
memset(dp,INF,sizeof(dp));
scanf("%d%d%d",&n,&m,&T);
for(i=1;i<=m;i++)
{
scanf("%d%d%d",&u,&v,&w);
ma[u].push_back({v,w});
}
bfs();
for(i=n;i>=1;i--)
{
if(dp[n][i]<=T)
{
j=i;
break;
}
}
print();
return 0;
}
Codeforces Round #374 (Div. 2)【A,B,C】的更多相关文章
- Codeforces Round #374 (Div. 2) A , B , C 水,水,拓扑dp
A. One-dimensional Japanese Crossword time limit per test 1 second memory limit per test 256 megabyt ...
- Codeforces Round #646 (Div. 2)【C. Game On Leaves 题解】
题意分析 关于这道题,意思就是两个人摘叶子,谁最后摘到编号为x的谁就赢了.既然是叶子,说明其最多只有一个分支,由于题目上说了是无向图,那就是度数小于等于的节点.也就是一步步移除度数小于等于的节点,直到 ...
- Codeforces Round #443 (Div. 2) 【A、B、C、D】
Codeforces Round #443 (Div. 2) codeforces 879 A. Borya's Diagnosis[水题] #include<cstdio> #inclu ...
- Codeforces Round #436 (Div. 2)【A、B、C、D、E】
Codeforces Round #436 (Div. 2) 敲出一身冷汗...感觉自己宛如智障:( codeforces 864 A. Fair Game[水] 题意:已知n为偶数,有n张卡片,每张 ...
- Codeforces Round #435 (Div. 2)【A、B、C、D】
//在我对着D题发呆的时候,柴神秒掉了D题并说:这个D感觉比C题简单呀!,,我:[哭.jpg](逃 Codeforces Round #435 (Div. 2) codeforces 862 A. M ...
- Codeforces Round #434 (Div. 2)【A、B、C、D】
Codeforces Round #434 (Div. 2) codeforces 858A. k-rounding[水] 题意:已知n和k,求n的最小倍数x,要求x后缀至少有k个0. 题解:答案就是 ...
- Codeforces Round #441 (Div. 2)【A、B、C、D】
Codeforces Round #441 (Div. 2) codeforces 876 A. Trip For Meal(水题) 题意:R.O.E三点互连,给出任意两点间距离,你在R点,每次只能去 ...
- Codeforces Round #440 (Div. 2)【A、B、C、E】
Codeforces Round #440 (Div. 2) codeforces 870 A. Search for Pretty Integers(水题) 题意:给两个数组,求一个最小的数包含两个 ...
- Codeforces Round #439 (Div. 2)【A、B、C、E】
Codeforces Round #439 (Div. 2) codeforces 869 A. The Artful Expedient 看不透( #include<cstdio> in ...
随机推荐
- 【caffe-windows】 caffe-master 之 卷积核可视化(利用matlab)
此篇是利用matlab对caffemodel的卷积核进行可视化.只介绍了卷积核的可视化,不涉及特征图的可视化. 是参考此博客: http://blog.csdn.net/zb1165048017/ar ...
- UVA 12130 - Summits(BFS+贪心)
UVA 12130 - Summits 题目链接 题意:给定一个h * w的图,每一个位置有一个值.如今要求出这个图上的峰顶有多少个.峰顶是这样定义的.有一个d值,假设一个位置是峰顶.那么它不能走到不 ...
- 51NOD 1962 区间计数 单调栈+二分 / 线段树+扫描线
区间计数 基准时间限制:1.5 秒 空间限制:262144 KB 分值: 80 两个数列 {An} , {Bn} ,请求出Ans, Ans定义如下: Ans:=Σni=1Σnj=i[max{ ...
- 【百度之星初赛A】路径交 LCA+线段树
[百度之星初赛A]路径交 Problem Description 给定一棵n个点的树,以及m条路径,每次询问第L条到第R条路径的交集部分的长度(如果一条边同时出现在2条路径上,那么它属于路径的交集). ...
- "Installing Software" has encountered a problem---pydev on ubuntu
"Installing Software" has encountered a problem. An error occurred while collecting items ...
- if UDP is permitted
Networking Basics (The Java™ Tutorials > Custom Networking > Overview of Networking) https://d ...
- 在Visual Studio 2015中引用DLL的3种方法
1.把dll文件复制到可执行文件所在目录 2.将工程属性->配置属性->调试->工作目录更改为dll文件所在目录 3.将工程属性->配置属性->调试->环境设置为P ...
- objective-c的代码块block
一.block 1.bock是由于^开头,括号里面填写参数类型. 标准代码块: 返回值 (^代码块名称) (参数类型) = ^(参数) {方法体}; 2.我们的块即可以定义在函数内或者对象 ...
- GCD 开启一个定时器实现倒计时功能
UIAlertView * alt = [[UIAlertView alloc] initWithTitle:@"提示" message:@"操作成功,马上返回继续体验吧 ...
- spl处理文件(文件详细信息、文件遍历、查询指定行、写入CSV文件)
<?php /** * 文件操作 */ //常用操作 $file = new SplFileInfo('D:/workspace/xlyy/spl/test.txt'); $file_info ...