백준 5052번: 전화번호 목록 / C++
2023. 3. 28. 23:12ㆍ개인공부/코딩테스트
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
|
#include <iostream>
#include <string>
#include <set>
using namespace std;
int main()
{
cin.tie(NULL);
cout.tie(NULL);
ios::sync_with_stdio(false);
int TestCase;
cin >> TestCase;
for (int i = 0; i < TestCase; ++i) {
set<string> S;
int n; cin >> n;
bool IsConst = true;
for (int j = 0; j < n; ++j) {
string str;
cin >> str;
S.insert(str);
auto iter = ++S.find(str);
if (iter != S.end()) {
string Next = *iter;
for (int i = 0; i < str.size(); ++i) {
if (str[i] != Next[i])
break;
if (i == str.size() - 1)
IsConst = false;
}
}
if (IsConst == true) { // 일관성이 없으면 스킵
while (!str.empty())
{
str.pop_back();
if (S.find(str) != S.end())
IsConst = false;
}
}
}
if (IsConst)
cout << "YES" << '\n';
else
cout << "NO" << '\n';
}
}
|
cs |
'개인공부 > 코딩테스트' 카테고리의 다른 글
백준 3197번: 백조의 호수 / C++ (0) | 2023.03.29 |
---|---|
백준 14502번 : 연구소 / C++ (0) | 2023.03.29 |
백준 11725번 : 트리의 부모 찾기 / C++ (0) | 2023.03.27 |
백준 4779번 : 칸토어 집합 / C++ (0) | 2023.03.27 |
백준 2638번 : 치즈 / C++ (0) | 2023.03.24 |