F. Fixing Banners
time limit per test

1 second

memory limit per test

512 megabytes

input

standard input

output

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.

Input

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.

Output

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).

Example
input

Copy
2
welcome
toparticipate
inthe
ccpccontest
inharbin
inoctober
harvest
belong
ninja
reset
amazing
intriguing
output

Copy
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)的更多相关文章

  1. The 2019 China Collegiate Programming Contest Harbin Site

    题解: https://files.cnblogs.com/files/clrs97/HarbinEditorialV2.zip Code: A. Artful Paintings /* let x= ...

  2. 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 ...

  3. 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, ...

  4. 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 ...

  5. 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, ...

  6. 模拟赛小结:The 2019 China Collegiate Programming Contest Harbin Site

    比赛链接:传送门 上半场5题,下半场疯狂挂机,然后又是差一题金,万年银首也太难受了. (每次银首都会想起前队友的灵魂拷问:你们队练习的时候进金区的次数多不多啊?) Problem J. Justify ...

  7. 2019 China Collegiate Programming Contest Qinhuangdao Onsite

    传送门 D - Decimal 题意: 询问\(\frac{1}{n}\)是否为有限小数. 思路: 拆质因子,看是不是只包含2和5即可,否则除不尽. Code #include <bits/st ...

  8. 2019 China Collegiate Programming Contest Qinhuangdao Onsite F. Forest Program(DFS计算图中所有环的长度)

    题目链接:https://codeforces.com/gym/102361/problem/F 题意 有 \(n\) 个点和 \(m\) 条边,每条边属于 \(0\) 或 \(1\) 个环,问去掉一 ...

  9. 2019 Multi-University Training Contest 1 String(序列自动机+贪心)

    题意 链接:https://vjudge.net/problem/HDU-6586 给你一个字符串和k,还有每个字符出现次数的限制,求一个长度为k的字典序最小的满足限制的子序列. 思路 先构造出序列自 ...

随机推荐

  1. 运行自己的 DaemonSet【转】

    本节以 Prometheus Node Exporter 为例演示如何运行自己的 DaemonSet. Prometheus 是流行的系统监控方案,Node Exporter 是 Prometheus ...

  2. 如何使用linux查看tomcat日志

  3. vue - 动态绑定 class

    <template>   <div class="todo-item" :class="{'is-complete':todo.completed}&q ...

  4. uboot如何启动内核

    2.7.1.uboot和内核到底是什么 2.7.1.1.uboot是一个裸机程序 (1)uboot的本质就是一个复杂点的裸机程序.和我们在ARM裸机全集中学习的每一个裸机程序并没有本质区别. 2.7. ...

  5. Spring的AOP开发(基于ApsectJ的注解)

    创建项目,导包 编写目标类并配置 创建OrderDao package com.rick.aop.demo1; public class OrderDao { public void save() { ...

  6. 016.Oracle数据库,取本季度第一天,取本季度最后一天

    /*取本季度第一天,取本季度最后一天*/ SELECT trunc(sysdate, 'Q') AS 本季度第一天 , add_months(trunc(sysdate, ) AS 本季度最后一天 F ...

  7. 嵊州普及Day1T2

    题意:走迷宫.求走到a[n][n]需要多久. 考场上想的dfs,听老师说最多50分.代码懒得码了,知道是走迷宫就好. 正解:bfs,时间复杂度O(n). 见代码: #include<iostre ...

  8. c# 外挂操作(内存操作)(内存读写取窗口句柄移动窗口取模块地址)工具类

    来源于网上  参考 https://www.cnblogs.com/fuhua/p/5877781.html 等众多文章 详情取看我第二个例子封装功能较多 https://www.cnblogs.co ...

  9. 二、Vue组件(component):组件的相互引用、通过props实现父子组件互传值

    一.组件各部分说明及互相引用 1.一个vue组件由三个部分组成 Template 只能存在一个根元素 2.Script 3.Style scoped:样式只在当前组件内生效 1.1 组件的基本引用代码 ...

  10. Acwing199 余数之和

    原题面:https://www.acwing.com/problem/content/201/ 题目大意:给出正整数n和k,计算j(n, k)=k mod 1 + k mod 2 + k mod 3 ...