으음 그대로 구현했다
하나의 배열로 입력 받아서 swap하고 등등
#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <functional>
#include <string>
#include <queue>
#include <stack>
#include <set>
#include <map>
#define xx first
#define yy second
#define all(x) (x).begin(), (x).end()
using namespace std;
using i64 = long long;
using ii = pair<int, int>;
using ii64 = pair<i64, i64>;
int main() {
int n, m;
scanf("%d %d", &n, &m);
vector<pair<char, bool>> v(n + m);
for (int i = 0; i < n; i++) {
scanf(" %1c", &v[i].xx);
v[i].yy = true;
}
reverse(v.begin(), v.begin() + n);
for (int i = n; i < n + m; i++)
scanf(" %1c", &v[i].xx);
int t;
scanf("%d", &t);
for (int k = 0; k < t; k++) {
for (int i = 0; i < n + m - 1; i++) {
if (v[i].yy == true && v[i+1].yy == false) {
swap(v[i], v[i + 1]);
i++;
}
}
}
for (int i = 0; i < n + m; i++) {
printf("%1c", v[i].xx);
}
return 0;
}
'백준' 카테고리의 다른 글
11558 The Game of Death (0) | 2021.08.28 |
---|---|
10158 개미 (0) | 2021.08.28 |
2960 에라토스테네스의 체 (0) | 2021.08.16 |
1907 탄소 화합물 (0) | 2021.08.08 |
1783 병든 나이트 (0) | 2021.08.07 |