Do Not Be Distracted!
【摘要】
文章目录
一、Do Not Be Distracted!总结
一、Do Not Be Distracted!
本题链接:A. Do Not Be Distracted!
题目:
A...
一、Do Not Be Distracted!
题目:
A. Do Not Be Distracted!
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
Polycarp has 26 tasks. Each task is designated by a capital letter of the Latin alphabet.
The teacher asked Polycarp to solve tasks in the following way: if Polycarp began to solve some task, then he must solve it to the end, without being distracted by another task. After switching to another task, Polycarp cannot return to the previous task.
Polycarp can only solve one task during the day. Every day he wrote down what task he solved. Now the teacher wants to know if Polycarp followed his advice.
For example, if Polycarp solved tasks in the following order: “DDBBCCCBBEZ”, then the teacher will see that on the third day Polycarp began to solve the task ‘B’, then on the fifth day he got distracted and began to solve the task ‘C’, on the eighth day Polycarp returned to the task ‘B’. Other examples of when the teacher is suspicious: "BAB"
, "AABBCCDDEEBZZ"
and "AAAAZAAAAA"
.
If Polycarp solved the tasks as follows: "FFGZZZY"
, then the teacher cannot have any suspicions. Please note that Polycarp is not obligated to solve all tasks. Other examples of when the teacher doesn’t have any suspicious: "BA"
, "AFFFCC"
and "YYYYY"
.
Help Polycarp find out if his teacher might be suspicious.
Input
The first line contains an integer t (1≤t≤1000)
. Then t test cases follow.
The first line of each test case contains one integer n (1≤n≤50)
— the number of days during which Polycarp solved tasks.
The second line contains a string of length n, consisting of uppercase Latin letters, which is the order in which Polycarp solved the tasks.
Output
For each test case output:
"YES"
, if the teacher cannot be suspicious;
"NO"
, otherwise.
You may print every letter in any case you want (so, for example, the strings yEs
, yes
, Yes
and YES
are all recognized as positive answer).
Example
input
5
3
ABA
11
DDBBCCCBBEZ
7
FFGZZZY
1
Z
2
AB
output
NO
NO
YES
YES
YES
本博客给出本题截图:
题意:给一个字符串,判断字符串后面的字符是否在前面出现过
AC代码
#include <iostream>
#include <string>
using namespace std;
const int N = 30;
int main()
{
int n;
cin >> n;
while (n -- )
{
int m;
cin >> m;
string a;
cin >> a;
bool flag = true;
for (int i = 0; i < a.size(); i ++ )
{
if (a[i] != a[i - 1])
for (int j = 0; j < i; j ++ )
if (a[i] == a[j])
{
flag = false;
break;
}
if (!flag) break;
}
if (flag) puts("YES");
else puts("NO");
}
return 0;
}
总结
水题,不解释
文章来源: chen-ac.blog.csdn.net,作者:辰chen,版权归原作者所有,如需转载,请联系作者。
原文链接:chen-ac.blog.csdn.net/article/details/119302993
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)