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 |
Tags
- math
- sql
- Union-find
- Calendar
- date
- JPA
- spring boot
- scanner
- deque
- map
- 큐
- 스프링부트
- List
- NIO
- Properties
- Java
- union_find
- 리소스모니터링
- set
- 힙덤프
- html
- priority_queue
- CSS
- dfs
- GC로그수집
- 스택
- BFS
- alter
- javascript
- string
Archives
- Today
- Total
목록백준 (1)
매일 조금씩
[C++] 백준 2941번: 크로아티아 알파벳
#include #include #include 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] == ..
알고리즘
2019. 9. 29. 21:33