CodeForces - 1520A Do Not Be Distracted!

Posted 海岛Blog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeForces - 1520A Do Not Be Distracted!相关的知识,希望对你有一定的参考价值。

A. Do Not Be Distracted!
time limit per test: 1 second
memory limit per test :256 megabytes

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

问题链接CodeForces - 1520A Do Not Be Distracted!
问题简述:(略)
问题分析:(略)
AC的C++语言程序如下:

/* CodeForces - 1520A Do Not Be Distracted! */

#include <bits/stdc++.h>

using namespace std;

const int L = 'z' - 'a' + 1;
int vis[L];

int main()
{
    int t, n;
    scanf("%d", &t);
    while (t--) {
        char last = 0, ch, flag = 1;

        memset(vis, 0, sizeof vis);

        scanf("%d", &n);
        scanf("%c", &ch);
        for (int i = 0; i < n; i++) {
            scanf("%c", &ch);
            if (ch == last) continue;
            if (vis[ch - 'A']) flag = 0;
            vis[ch - 'A'] = 1;
            last = ch;
        }

        puts(flag ? "YES" : "NO");
    }

    return 0;
}

以上是关于CodeForces - 1520A Do Not Be Distracted!的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #719 (Div. 3) A. Do Not Be Distracted!

do, not do

PSI and index do not match: PSI and index do not match

Do not use @ for indentation

Codeforces 809A - Do you want a date?(数学+排序)

Flask——The CSRF tokens do not match.