-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdo-not-be-distracted.cpp
70 lines (55 loc) · 1.02 KB
/
do-not-be-distracted.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// https://codeforces.com/problemset/problem/1520/A
#include <bits/stdc++.h>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
int testCases = 0;
cin >> testCases;
int numberOfDays = 0;
string str = "";
char previousChar, currentChar;
bool isDistracted = false;
set<char> s;
set<char>::iterator itr;
while (testCases--)
{
cin >> numberOfDays;
cin >> str;
currentChar = str[0];
s.insert(currentChar);
for (int i = 1; i < numberOfDays; i++)
{
previousChar = currentChar;
currentChar = str[i];
if (currentChar != previousChar)
{
itr = s.find(currentChar);
if (itr != s.end())
{
isDistracted = true;
}
else
{
s.insert(currentChar);
}
}
}
if (isDistracted)
{
cout << "NO";
}
else
{
cout << "YES";
}
cout << "\n";
s.clear();
previousChar = '\0';
currentChar = '\0';
isDistracted = false;
}
return 0;
}