https://www.acmicpc.net/problem/1316
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
|
#include <iostream>
#include <string>
#include <array>
std::array<std::string, 100> arr;
int N, ans;
bool alphabet[26];
void input()
{
std::cin >> N;
for (int i = 0; i < N; ++i)
{
std::cin >> arr[i];
}
}
void solve()
{
for (int i = 0; i < N; ++i)
{
bool flag = true;
for (int j = 0; j < 26; ++j)
{
alphabet[j] = false;
}
for (int j = 0; j < arr[i].size(); ++j)
{
if (alphabet[arr[i][j] - 'a'] == false)
{
alphabet[arr[i][j] - 'a'] = true;
continue;
}
if (arr[i][j] != arr[i][j - 1] && alphabet[arr[i][j] - 'a'] == true)
{
flag = false;
break;
}
}
if (flag == true)
{
++ans;
}
}
}
void output()
{
std::cout << ans;
}
int main()
{
input();
solve();
output();
}
|
cs |
일일 PS 프로젝트
'알고리즘' 카테고리의 다른 글
koi : combinations(S) (0) | 2020.08.18 |
---|---|
백준 1037 : 약수 (0) | 2020.08.14 |
백준 2798 : 블랙잭 (0) | 2020.08.14 |
백준 1568 : 새 (0) | 2020.08.14 |
백준 13460 : 구슬 탈출 2 (0) | 2020.08.11 |