比赛 |
20241022 |
评测结果 |
AAAAAAAAAA |
题目名称 |
解压缩 |
最终得分 |
100 |
用户昵称 |
健康铀 |
运行时间 |
0.172 s |
代码语言 |
C++ |
内存使用 |
18.66 MiB |
提交时间 |
2024-10-22 09:26:10 |
显示代码纯文本
#include<bits/stdc++.h>
#include <string.h>
using namespace std;
struct node{
string a;
}s1[500010];
string s,t;
int top,q[500010],lt[500010];
int main(){
freopen("extract.in","r",stdin);
freopen("extract.out","w",stdout);
cin>>s;
for(int i=0;i<=s.size()-1;i++){
if(s[i]=='['){
q[top+1]=0;
s1[top+1].a="";
top++;
}
else if(s[i]==']'){
for(int i=1;i<=q[top];i++){
s1[top-1].a+=s1[top].a;
}
top--;
}
else{
if('0'<=s[i]&&s[i]<='9'){
q[top]=q[top]*10+s[i]-'0';
}
else{
s1[top].a+=s[i];
}
}
}
cout<<s1[0].a;
return 0;
}