관리 메뉴

기억을 위한 기록들

[백준 1316: 그룹 단어 체커] - C++ 본문

Coding Test - cpp/String

[백준 1316: 그룹 단어 체커] - C++

에드윈H 2021. 2. 19. 22:13

www.acmicpc.net/problem/1316

 

1316번: 그룹 단어 체커

그룹 단어란 단어에 존재하는 모든 문자에 대해서, 각 문자가 연속해서 나타나는 경우만을 말한다. 예를 들면, ccazzzzbb는 c, a, z, b가 모두 연속해서 나타나고, kin도 k, i, n이 연속해서 나타나기 때

www.acmicpc.net

 

#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;
}