문자열 S가 주어졌을 때, 이 문자열에서 단어만 뒤집으려고 한다.
먼저, 문자열 S는 아래와과 같은 규칙을 지킨다.
- 알파벳 소문자('a'-'z'), 숫자('0'-'9'), 공백(' '), 특수 문자('<', '>')로만 이루어져 있다.
- 문자열의 시작과 끝은 공백이 아니다.
- '<'와 '>'가 문자열에 있는 경우 번갈아가면서 등장하며, '<'이 먼저 등장한다. 또, 두 문자의 개수는 같다.
태그는 '<'로 시작해서 '>'로 끝나는 길이가 3 이상인 부분 문자열이고, '<'와 '>' 사이에는 알파벳 소문자와 공백만 있다. 단어는 알파벳 소문자와 숫자로 이루어진 부분 문자열이고, 연속하는 두 단어는 공백 하나로 구분한다. 태그는 단어가 아니며, 태그와 단어 사이에는 공백이 없다.
첫째 줄에 문자열 S가 주어진다. S의 길이는 100,000 이하이다.
첫째 줄에 문자열 S의 단어를 뒤집어서 출력한다.
Input:
baekjoon online judge
Output:
noojkeab enilno egduj
Input:
<open>tag<close>
Output:
<open>gat<close>
Input:
<ab cd>ef gh<ij kl>
Output:
<ab cd>fe hg<ij kl>
Input:
one1 two2 three3 4fourr 5five 6six
Output:
1eno 2owt 3eerht rruof4 evif5 xis6
Input:
<int><max>2147483647<long long><max>9223372036854775807
Output:
<int><max>7463847412<long long><max>7085774586302733229
Input:
<problem>17413<is hardest>problem ever<end>
Output:
<problem>31471<is hardest>melborp reve<end>
Input:
< space >space space space< spa c e>
Output:
< space >ecaps ecaps ecaps< spa c e>
#define _CRT_SECURE_NO_WARNIGNS
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
string s;
string temp;
vector<string> result;
bool isSkip = false;
getline(cin, s);
cin.ignore();
s.push_back(' ');
for (long unsigned int i = 0; i < s.size(); i++)
{
temp.push_back(s[i]);
if (s[i] == '<' && temp.size() == 1) isSkip = true;
else if(s[i] == '>')
{
isSkip = false;
result.emplace_back(temp);
temp.clear();
continue;
}
if (isSkip == true) continue;
if (isspace(s[i]) || s[i] == '<')
{
reverse(temp.begin(), temp.end()-1);
result.emplace_back(temp);
temp.clear();
if (s[i] == '<') isSkip = true;
}
}
for (string a : result)
{
cout << a;
}
return 0;
}
//1.
temp.push_back(s[i]);
//2.
if (s[i] == '<' && temp.size() == 1) isSkip = true;
//3.
else if(s[i] == '>')
{
isSkip = false;
result.emplace_back(temp);
temp.clear();
continue;
}
//4.
if (isSkip == true) continue;
//1.
if (isspace(s[i]) || s[i] == '<')
{
reverse(temp.begin(), temp.end()-1);
result.emplace_back(temp);
temp.clear();
if (s[i] == '<') isSkip = true;
}
Runtime 0 ms / Memory 2516 KB