The 2019 China Collegiate Pro gramming Contest Harbin Site (F. Fixing Banners)
1 second
512 megabytes
standard input
standard output
Harbin, whose name was originally a Manchu word meaning "a place for drying fishing nets", grew from a small rural settlement on the Songhua River to become one of the largest cities in Northeast China. Founded in 1898 with the coming of the Chinese Eastern Railway, the city first prospered as a region inhabited by an overwhelming majority of the immigrants from the Russian Empire. Now, Harbin is the capital of Heilongjiang province and the largest city in the northeastern region of the People's Republic of China. It serves as a key political, economic, scientific, cultural, and communications hub in Northeast China, as well as an important industrial base of the nation.
This year, a CCPC regional contest is going to be held in this wonderful city, hosted by Northeast Forestry University. To ensure the contest will be a success and enjoyed by programmers around the country, preparations for the event are well underway months before the contest.
You are the leader of a student volunteer group in charge of making banners to decorate the campus during the event. Unfortunately, your group made a mistake and misprinted one of the banners. To be precise, the word "harbin" is missing in that banner. Because you don't have time to reprint it, the only way to fix it is to cut letters from some used old banners and paste them onto the misprinted banner. You have exactly six banners, and for some reason, you must cut exactly one letter from each banner. Then, you can arrange and paste the six letters onto the misprinted banner and try to make the missing word "harbin". However, before you start cutting, you decide to write a program to see if this is possible at all.
The input contains multiple cases. The first line of the input contains a single integer T (1≤T≤50000)T (1≤T≤50000), the number of cases.
For each case, the input contains six lines. Each line contains a non-empty string consisting only of lowercase English letters, describing the letters on one of the old banners.
The total length of all strings in all cases doesn't exceed 2⋅1062⋅106.
For each case, print the string "Yes" (without quotes) if it is possible to make the word "harbin", otherwise print the string "No" (without quotes).
2
welcome
toparticipate
inthe
ccpccontest
inharbin
inoctober
harvest
belong
ninja
reset
amazing
intriguing
No
Yes
签到题。不过自己搞复杂了,明明可以用一个技巧,但是我加了6个for,TLE了。
这个题是输入六条字符串,每一条仅只能截取一个字符,看能否组成harbin。
我想的算法是,把这个东西转成一个二维矩阵来进行dfs求解。(队友暴力过了,代码极其暴力,惨无人道..我表示看不懂....)
j 1 2 3 4 5 6
h a r b i n
i 1
2
3
4
5
6
把输入的东西转化为01矩阵,i对应6条字符串,比如样例第一条harvest,出现了h,a,r,那么在i=1行处,横着分别为 1 1 1 0 0 0
这里有个技巧
id['h']=;
id['a']=;
id['r']=;
id['b']=;id['i']=;id['n']=;
这样的话,一个字母对应一个值,比如输入字符串a, e[ i ] [ id[ a[j] ] ] 就可以了。
录入过程就是下面这个亚子:
for(int i=;i<=;i++)
{
scanf("%s",s);
vis[i]=false;
int len=strlen(s);
for(int j=;j<len;j++)
{
e[i][id[s[j]]]=;
}
}
那么接下来就是DFS了
void dfs(int idx)
{
if(ok)
return ;
if(idx==)
{
ok=;return ;
}
for(int i=;i<=;i++)
{
if(!vis[i]&&e[i][idx])
{
vis[i]=true;
dfs(idx+);
vis[i]=false;
}
}
}
思想是:idx表示字母序号,由于需要完整的harbin,所以从 idx=1 开始;idx进去以后,for里的i表示第几条字符串,如果有这么一条字符串,未被使用而且存在idx这个字符,那么记录在案,标记已使用,dfs(idx+1)找下一个字母。如果idx==7了,肯定OK,终止输出YES,否则是NO
最后,每次记得初始化
#include<iostream>
#include<cstdio>
#include<cstring>
const int maxn=2e6+;
using namespace std;
char s[maxn];
int e[][];
bool vis[];
int id[];
int ok=;
void dfs(int idx)
{
if(ok)
return ;
if(idx==)
{
ok=;return ;
}
for(int i=;i<=;i++)
{
if(!vis[i]&&e[i][idx])
{
vis[i]=true;
dfs(idx+);
vis[i]=false;
}
}
}
int main()
{
int t;
scanf("%d",&t);
id['h']=;
id['a']=;
id['r']=;
id['b']=;id['i']=;id['n']=;
while(t--)
{
memset(e,,sizeof(e));
ok=;
for(int i=;i<=;i++)
{
scanf("%s",s);
vis[i]=false;
int len=strlen(s);
for(int j=;j<len;j++)
{
e[i][id[s[j]]]=;
}
}
dfs();
if(ok)
printf("Yes\n");
else
printf("No\n");
}
return ;
}
另一个录入方法:
for(int i=;i<=;i++)
{
scanf("%s",a);
int len=strlen(a);
for(int j=;j<len;j++)
{
if(a[j]=='h')
{
e[i][]=;
}
if(a[j]=='a')
e[i][]=;
if(a[j]=='r')
e[i][]=;
if(a[j]=='b')
e[i][]=;
if(a[j]=='i')
e[i][]=;
if(a[j]=='n')
e[i][]=; }
}
The 2019 China Collegiate Pro gramming Contest Harbin Site (F. Fixing Banners)的更多相关文章
- The 2019 China Collegiate Programming Contest Harbin Site
题解: https://files.cnblogs.com/files/clrs97/HarbinEditorialV2.zip Code: A. Artful Paintings /* let x= ...
- The 2019 China Collegiate Programming Contest Harbin Site F. Fixing Banners
链接: https://codeforces.com/gym/102394/problem/F 题意: Harbin, whose name was originally a Manchu word ...
- The 2019 China Collegiate Programming Contest Harbin Site K. Keeping Rabbits
链接: https://codeforces.com/gym/102394/problem/K 题意: DreamGrid is the keeper of n rabbits. Initially, ...
- The 2019 China Collegiate Programming Contest Harbin Site J. Justifying the Conjecture
链接: https://codeforces.com/gym/102394/problem/J 题意: The great mathematician DreamGrid proposes a con ...
- The 2019 China Collegiate Programming Contest Harbin Site I. Interesting Permutation
链接: https://codeforces.com/gym/102394/problem/I 题意: DreamGrid has an interesting permutation of 1,2, ...
- 模拟赛小结:The 2019 China Collegiate Programming Contest Harbin Site
比赛链接:传送门 上半场5题,下半场疯狂挂机,然后又是差一题金,万年银首也太难受了. (每次银首都会想起前队友的灵魂拷问:你们队练习的时候进金区的次数多不多啊?) Problem J. Justify ...
- 2019 China Collegiate Programming Contest Qinhuangdao Onsite
传送门 D - Decimal 题意: 询问\(\frac{1}{n}\)是否为有限小数. 思路: 拆质因子,看是不是只包含2和5即可,否则除不尽. Code #include <bits/st ...
- 2019 China Collegiate Programming Contest Qinhuangdao Onsite F. Forest Program(DFS计算图中所有环的长度)
题目链接:https://codeforces.com/gym/102361/problem/F 题意 有 \(n\) 个点和 \(m\) 条边,每条边属于 \(0\) 或 \(1\) 个环,问去掉一 ...
- 2019 Multi-University Training Contest 1 String(序列自动机+贪心)
题意 链接:https://vjudge.net/problem/HDU-6586 给你一个字符串和k,还有每个字符出现次数的限制,求一个长度为k的字典序最小的满足限制的子序列. 思路 先构造出序列自 ...
随机推荐
- flask-Bootstrap Jinja2 原生 模板 和 jumpserver 模板
#模板 {% block doc -%} <!DOCTYPE html> <html{% block html_attribs %}{% endblock html_attribs ...
- swoole之异步文件IO
一.代码部分 读: <?php /** * 异步文件系统仅限于4.3.0之前的版本 * 读取文件 */ $filename = dirname(__FILE__).DIRECTORY_SEPAR ...
- 苹果vs中国竞争者:瘦死的骆驼比马大?
前不久,苹果调整2019年第一财季的营收指引,预计第一季度毛利率为38%,相关收入大约为55亿美元,全年总体营收约为840亿美元,运营开支约为87亿美元.针对2019年的运营状况,库克亲自给投资者写了 ...
- Aop配置时候的一些问题
编写切面,并在ApplicationContest.xml 中相关AOP及切面的配置完全正确的情况下,运行报错如下: Exception in thread "main" org. ...
- JAVA DateUtil 工具类封装(转)
原文链接 https://blog.csdn.net/wangpeng047/article/details/8295623 作者三次整理后的代码 下载链接 https://www.lanzou ...
- J. Cola
J. Cola time limit per test 4.0 s memory limit per test 64 MB input standard input output standard o ...
- a标签的超链接提交form表单
<form action="/home/search" method="get" id="search_form"><di ...
- 微信公众号开发之根据OpenID列表群发(十四)
上一篇我们讲述了<微信公众号开发之根据标签进行群发(十二)>,这次我们讲解一下[根据OpenID列表群发] 根据OpenID列表群发[订阅号不可用,服务号认证后可用] 接口调用请求说明 h ...
- 九、React中的组件、父子组件、React props父组件给子组件传值、子组件给父组件传值、父组件中通过refs获取子组件属性和方法
一.概述 React中的组件: 解决html 标签构建应用的不足. 使用组件的好处:把公共的功能单独抽离成一个文件作为一个组件,哪里里使用哪里引入. [父子组件]:组件的相互调用中,我们把调用者称为父 ...
- 前端第三篇---前端基础之JavaScript
前端第三篇---前端基础之JavaScript 一.JavaScript概述 二.JavaScript的基础 三.词法分析 四.JavaScript的内置对象和方法 五.BOM对象 六.DOM对象 七 ...