본문 바로가기

알고리즘/백준

그룹 단어 체커

#include <iostream>
#include <string>
using namespace std;

int cnt;

void Checker(string word)
{
	int len = word.size();

	for (int i = 0; i < len - 2; i++)
	{
		if (word[i] != word[i + 1])
		{
			for (int j = i + 2; j < len; j++)
				if (word[j] == word[i])
					return;
		}
	}
	cnt++;
}

int main()
{
	int num;
	string word;

	cin >> num;

	for (int i = 0; i < num; i++)
	{
		cin >> word;
		Checker(word);
	}
	cout << cnt << '\n';
	return 0;
}

'알고리즘 > 백준' 카테고리의 다른 글

설탕 배달  (0) 2019.11.05
손익분기점  (0) 2019.11.04
크로아티아 알파벳  (0) 2019.10.22
다이얼  (0) 2019.10.18
상수  (0) 2019.10.16