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
- 카카오
- 식단
- 투포인터
- Algorithm
- 소감
- 보석쇼핑
- 서버개발캠프
- c++
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- 카카오인턴
- 삼성 #코테 #2020상반기 #c++
- BFS
- 알고리즘
- BaekJoon
- 1편
- 백준
- 유니온파인드
- LIS #Algorithm #요소추적
- 코테
- 코딩테스트
- Smilegate
- Union-find
- 스마일게이트
- 중반부
Archives
- Today
- Total
짱아의 개발 기록장
백준 17413번. 단어 뒤집기 2(c++) / String 본문
반응형
문자열처리문제였다.
단순히, 문제에 나와있는 고려사항들을 다 처리해주면 쉽게 구할 수 있다.
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
|
// 단어 뒤집기 2
#include <algorithm>
#include <iostream>
using namespace std;
string s;
int main()
{
getline(cin, s);
string ans = "";
string tmp = "";
bool check = false;
for(int i=0; i<s.size(); i++){
if(s[i]=='<'){
if(tmp.size()>0){
reverse(tmp.begin(), tmp.end());
ans += tmp;
tmp = "";
}
check = true;
}else if(s[i]=='>'){
tmp += s[i];
ans += tmp;
tmp = "";
check = false;
continue;
}else if(s[i]==' '){
if(!check){
reverse(tmp.begin(), tmp.end());
ans += tmp;
ans += s[i];
tmp = "";
continue;
}
}
tmp += s[i];
if(i==s.size()-1){
reverse(tmp.begin(), tmp.end());
ans += tmp;
}
}
cout<<ans<<"\n";
return 0;
}
|
cs |
반응형
'Algorithm > Baekjoon' 카테고리의 다른 글
백준 14938번. 서강 그라운드(c++) / 다익스트라 (0) | 2021.05.07 |
---|---|
백준 5430번. AC(c++) / 투포인터 (0) | 2021.05.04 |
백준 20040번. 사이클 게임(c++) / 유니온파인드 (0) | 2021.04.30 |
백준 2533번. 사회망 서비스(SNS) (c++) / Tree+DFS+DP 🌟문제 굿!🌟 (0) | 2021.04.19 |
백준 14916번. 거스름돈(c++) / Greedy (0) | 2021.04.17 |
Comments