Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 데이터애셋
- 자료구조
- 강참조
- 언리얼가비지컬렉터
- 정렬
- UE_LOG
- unorder_map
- 프로그래머스
- 스마트포인터
- C++
- UE4 커스텀로그
- dataasset
- 크리티컬섹션
- 정렬알고리즘
- moreeffectiveC++
- UELOG
- enumasByue
- UML관련
- stl
- 언리얼엔진구조체
- 람다
- 람다사용정렬
- 애셋로드
- 약참조
- 델리게이트
- 알고리즘
- BFS
- map
- 선택정렬
- C++최적화
Archives
- Today
- Total
기억을 위한 기록들
[백준 1316: 그룹 단어 체커] - C++ 본문
#include <iostream>
#include <vector>
#include <string>
#include <string.h>
#include <algorithm>
using namespace std;
int main() {
int n;
cin >> n;
string input;
vector<char> checkWord;
int result = 0;
for (int i = 0; i < n; i++)
{
checkWord.clear();
cin >> input;
bool isGroub = true;
int size = input.size();
for (int j = 0; j < size; j++)
{
if (find(checkWord.begin(), checkWord.end(), input[j]) != checkWord.end()) //이미 나온 문자인데
{
if (checkWord.back() != input[j]) //이미 사용한 문자의 맨뒤에도 없다면 멀리 떨어져있는 상태
{
isGroub = false; //그러므로 그룹단어 불가능
break;
}
}
else
{
char cur = input[j];
checkWord.push_back(cur);
}
}
if (isGroub)
{
result++;
}
}
cout << result << '\n';
return 0;
}
'Coding Test - cpp > String' 카테고리의 다른 글
[프로그래머스 lv 2 ] - 오픈채팅방 (0) | 2021.09.08 |
---|---|
[HackerRank/C++] Repeated String (0) | 2021.07.25 |
[백준 11721: 열 개씩 끊어 출력하기] - C++ (0) | 2021.03.25 |
[백준 11718: 그대로 출력하기] - C++ (0) | 2021.03.05 |
[백준 9012: 괄호] - C++ (0) | 2021.02.19 |