https://www.acmicpc.net/problem/1316
아스키코드를 활용하였다.
using System;
using System.IO;
namespace B1316
{
class Program
{
static void Main()
{
StreamReader sr = new StreamReader(Console.OpenStandardInput());
StreamWriter sw = new StreamWriter(Console.OpenStandardOutput());
int n = int.Parse(sr.ReadLine());
bool[] alphabet = new bool[26];
int count = 0;
for(int i=0; i < n; i++)
{
string str = sr.ReadLine();
bool isGroup = true; //그룹단어인가?
char preChar = str[0]; //이전 문자
alphabet[str[0] - 97] = true;
for (int j = 1; j < str.Length; j++)
{
if (alphabet[str[j] - 97] == true && preChar != str[j])
{
//알파벳이 이미 나왔고 연속한 문자가 아닐 경우
isGroup = false;
break;
}
preChar = str[j];
alphabet[str[j] - 97] = true;
}
if (isGroup) count++;
Array.Clear(alphabet);
}
sw.Write(count);
sr.Close();
sw.Flush();
sw.Close();
}
}
}
'알고리즘 > 백준 BOJ' 카테고리의 다른 글
[ BOJ/C# ] 12789 도키도키 간식드리미 (0) | 2023.11.01 |
---|---|
[ BOJ/C# ] 2193 이친수 (0) | 2023.10.31 |
[ BOJ/C# ] 4949 균형잡힌 세상 (0) | 2023.10.29 |
[ BOJ/C# ] 11050 이항 계수 1 (1) | 2023.10.28 |
[ BOJ/C# ] 2108 통계학 (0) | 2023.10.27 |