You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
string expand() {
|
|
int d;
|
|
char x;
|
|
string s;
|
|
while (cin >> x) {
|
|
if (x == '[') {
|
|
cin >> d;
|
|
string t = expand();
|
|
while (d--) s += t;
|
|
} else if (x == ']')
|
|
return s;
|
|
else s += x;
|
|
}
|
|
return s;
|
|
}
|
|
|
|
|
|
int main() {
|
|
cout << expand();
|
|
return 0;
|
|
} |