Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Frustum
- 프로그래머스
- const
- RVO
- UE5
- 오블완
- DeferredRendering
- RootMotion
- 언리얼엔진5
- algorithm
- baekjoon
- 1563
- 줄 세우기
- GeeksForGeeks
- IFileDialog
- C++
- DirectX11
- UnrealEngine4
- NRVO
- softeer
- C
- 티스토리챌린지
- 백준
- Programmers
- Unreal Engine5
- 2294
- winapi
- 팰린드롬 만들기
- directx
- UnrealEngine5
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 5052번 :: 전화번호 목록 본문
https://www.acmicpc.net/problem/5052
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
71
72
|
#include <iostream>
#include <string>
#include <map>
#include <vector>
#include <algorithm>
#include <math.h>
#include <queue>
#include <functional>
#include <sstream>
#include <memory.h>
#include <deque>
#include <set>
#include <unordered_set>
#include <thread>
#include <atomic>
using namespace std;
int t, n;
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> t;
while (t--)
{
cin >> n;
vector<string> nums;
for (int i = 0; i < n; ++i)
{
string s;
cin >> s;
nums.push_back(s);
}
sort(nums.begin(), nums.end());
bool check = false;
for (int i = 0; i < nums.size()-1; ++i)
{
if (nums[i].size() <= nums[i+1].size())
{
if (nums[i] == nums[i + 1].substr(0, nums[i].size()))
{
check = true;
break;
}
}
}
if (check)
{
cout << "NO" << endl;
}
else
{
cout << "YES" << endl;
}
}
}
|
cs |
주어진 문자열들중에서, 어떤 문자열이 다른 문자열의 접두어부분과 똑같을 경우 NO를 출력하고, 아니면 YES를 출력하면 된다.
이 문제같은경우는 정렬시켜주면 굉장히 쉽게 풀 수 있는 문제이다.
정렬할 경우 사전순으로 정렬이 되어지는데, 그러면 그냥 현재문자열의 크기만큼 다음문자열의 0번째인덱스부터 비교를 해주면 된다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 1484번 :: 다이어트 (0) | 2024.11.07 |
---|---|
[Algorithm]Baekjoon 12978번 :: 스크루지 민호 2 (0) | 2024.11.07 |
[Algorithm]Baekjoon 9207번 :: 페그 솔리테어 (0) | 2024.11.06 |
[Algorithm]Baekjoon 9944번 :: NxM 보드 완주하기 (0) | 2024.11.04 |
[Algorithm]Baekjoon 19942번 :: 다이어트 (1) | 2024.11.04 |