250x250
Notice
Recent Posts
Recent Comments
Link
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Java
- map
- sql
- javascript
- Calendar
- spring boot
- alter
- Union-find
- 스프링부트
- Properties
- string
- html
- union_find
- date
- set
- NIO
- JPA
- 스택
- deque
- GC로그수집
- List
- math
- 리소스모니터링
- scanner
- 힙덤프
- 큐
- dfs
- priority_queue
- CSS
- BFS
Archives
- Today
- Total
매일 조금씩
[C++] 백준 2941번: 크로아티아 알파벳 본문
728x90
반응형
#include <iostream>
#include <string>
#include <vector>
using namespace std;
int solution(string word) {
int count = 0;
for (int i = 0; i < word.size(); i++) {
if (word[i] == 'c') {
if (word[i + 1] == '=' || word[i + 1] == '-')
i++;
}
else if (word[i] == 'd') {
if (word[i + 1] == 'z'&& word[i + 2] == '=') {
i++;
i++;
}
else if (word[i + 1] == '-')
i++;
}
else if (word[i] == 'l'&&word[i + 1] == 'j')
i++;
else if (word[i] == 'n'&& word[i + 1] == 'j')
i++;
else if (word[i] == 's' && word[i + 1] == '=')
i++;
else if (word[i] == 'z' && word[i + 1] == '=')
i++;
count++;
}
return count;
}
int main(void){
string word;
cin >> word;
int result;
result = solution(word);
cout << result;
return 0;
}
728x90
반응형
'알고리즘' 카테고리의 다른 글
[C++] 백준 1475번 : 방 번호 (0) | 2019.11.19 |
---|---|
[C++] 백준 1543번: 문서 검색 (0) | 2019.10.31 |
[C++] 백준 1764번 : 듣보잡 (0) | 2019.09.28 |
[C++] 백준 10809번: 알파벳 찾기 (0) | 2019.09.12 |
[C++] 백준 11383번: 뚊 (0) | 2019.09.10 |