mirror of
https://github.com/tiennm99/codeforces.git
synced 2026-06-10 00:13:21 +00:00
[Init] Solved solutions
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main()
|
||||
{
|
||||
int n, t;
|
||||
cin >> n >> t;
|
||||
string s;
|
||||
cin >> s;
|
||||
while (t--)
|
||||
{
|
||||
for (string::iterator i = s.begin(); i != s.end(); i++)
|
||||
{
|
||||
if (*i == 'B' && *(i + 1) == 'G')
|
||||
{
|
||||
*i = 'G';
|
||||
*(i + 1) = 'B';
|
||||
i++;
|
||||
}
|
||||
}
|
||||
}
|
||||
cout << s;
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user