짱아의 개발 기록장

백준 17413번. 단어 뒤집기 2(c++) / String 본문

Algorithm/Baekjoon

백준 17413번. 단어 뒤집기 2(c++) / String

jungahshin 2021. 5. 2. 23:36
반응형

문자열처리문제였다.

단순히, 문제에 나와있는 고려사항들을 다 처리해주면 쉽게 구할 수 있다.

 

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
반응형
Comments