hdu1274 문자열 확장 (귀속 or 창고)
#include<bits/stdc++.h>
using namespace std;
int main()
{
int T;cin>>T;
while(T--){
string s,ans;cin>>s;
stack<char>sta;
for(int i=0;i<s.size();i++){
if(s[i]>='0'&&s[i]<='9'||s[i]=='(') sta.push(s[i]);
else if(isalpha(s[i])){
if(sta.top()>='0'&&sta.top()<='9'){
int t=10;
int num=sta.top()-'0'; sta.pop();
while(!sta.empty()&&sta.top()>='0'&&sta.top()<='9'){
num=num+t*(sta.top()-'0');
sta.pop();
t*=10;
}
while(num--){
sta.push(s[i]);
}
}
else sta.push(s[i]);
}
else if(s[i]==')'){
string temp;
while(sta.top()!='('){
temp.insert(temp.begin(),sta.top());
sta.pop();
}
sta.pop();
int num;
if(sta.empty()||!(sta.top()>='0'&&sta.top()<='9')) num=1;
else{
int t=10;
num=sta.top()-'0'; sta.pop();
while(!sta.empty()&&sta.top()>='0'&&sta.top()<='9'){
num=num+t*(sta.top()-'0');
sta.pop();
t*=10;
}
}
while(num--){
for(int j=0;j<temp.size();j++) sta.push(temp[j]);
}
}
}
while(!sta.empty()){
ans.insert(ans.begin(),sta.top());
sta.pop();
}
cout<<ans<<endl;
}
}
반복:
#include<bits/stdc++.h>
using namespace std;
int i;
string str(string s)
{
string temp="";
int num=0;
for(;i<s.size();i++){
if(s[i]>='0'&&s[i]<='9') num=num*10+s[i]-'0';
else if(isalpha(s[i])){
if(s[i-1]>='0'&&s[i-1]<='9'){
for(int j=0;j<num;j++){
temp+=s[i];
}
num=0;
}
else temp+=s[i];
}
else if(s[i]=='('){
if(isalpha(s[i-1])) num=1;
i++;
string t=str(s);
for(int j=0;j<num;j++) temp+=t;
num=0;
}
else return temp;
}
}
int main()
{
int T;cin>>T;
while(T--){
i=0;
string s;cin>>s;
cout<<str(s)<<endl;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Python urllib 라이브러리에서 헤더를 추가하는 방법일부 사이트를 요청할 때, 우리는 요청 헤더를 붙여야만 웹 페이지의 캡처를 완성할 수 있다. 그렇지 않으면 오류가 생겨서 캡처한 웹 페이지로 돌아갈 수 없다.다음은 요청 헤더를 추가하는 두 가지 방법을 소개한다. 방...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.