문제
예전에는 운영체제에서 크로아티아 알파벳을 입력할 수가 없었다. 따라서, 다음과 같이 크로아티아 알파벳을 변경해서 입력했다.
크로아티아 알파벳변경
č | c= |
ć | c- |
dž | dz= |
đ | d- |
lj | lj |
nj | nj |
š | s= |
ž | z= |
예를 들어, ljes=njak은 크로아티아 알파벳 6개(lj, e, š, nj, a, k)로 이루어져 있다. 단어가 주어졌을 때, 몇 개의 크로아티아 알파벳으로 이루어져 있는지 출력한다.
dž는 무조건 하나의 알파벳으로 쓰이고, d와 ž가 분리된 것으로 보지 않는다. lj와 nj도 마찬가지이다. 위 목록에 없는 알파벳은 한 글자씩 센다.
입력
첫째 줄에 최대 100글자의 단어가 주어진다. 알파벳 소문자와 '-', '='로만 이루어져 있다.
단어는 크로아티아 알파벳으로 이루어져 있다. 문제 설명의 표에 나와있는 알파벳은 변경된 형태로 입력된다.
출력
입력으로 주어진 단어가 몇 개의 크로아티아 알파벳으로 이루어져 있는지 출력한다.
코드
#include <iostream>
using namespace std;
int main()
{
// :: Input
string input;
cin >> input;
// :: Count
int sum = 0;
for(int index = 0; index < input.length(); index++) {
sum += 1;
// >> Convert
if(index + 1 < input.length()) {
if(input[index] == 'c') {
if(input[index + 1] == '=' || input[index + 1] == '-') index += 1;
} else if (input[index] == 'd') {
if(input[index + 1] == '-') index += 1;
else if(input[index + 1] == 'z'
&& index + 2 < input.length()
&& input[index + 2] == '=') index += 2;
} else if (input[index] == 'l') {
if(input[index + 1] == 'j') index += 1;
} else if (input[index] == 'n') {
if(input[index + 1] == 'j') index += 1;
} else if (input[index] == 's') {
if(input[index + 1] == '=') index += 1;
} else if (input[index] == 'z') {
if(input[index + 1] == '=') index += 1;
}
}
}
// :: Output
cout << sum;
return 0;
}
참고
'C++ > Baekjoon' 카테고리의 다른 글
백준 3003: 킹, 퀸, 룩, 비숍, 나이트, 폰 (0) | 2022.10.17 |
---|---|
백준 1316: 그룹 단어 체커 (0) | 2022.10.10 |
백준 5622: 다이얼 (0) | 2022.10.10 |
백준 2908: 상수 (0) | 2022.10.10 |
백준 1152: 단어의 개수 (0) | 2022.10.10 |