hdu 1022总是WA~~
http://acm.hdu.edu.cn/showproblem.php?pid=1022我的代码比较乱。。。。#include<iostream>usingnames...
http://acm.hdu.edu.cn/showproblem.php?pid=1022
我的代码比较乱。。。。
#include<iostream>
using namespace std;
struct stack
{
int a[1001];
int n;
};
void push(struct stack &stack1,int k)
{
stack1.a[stack1.n+1]=k;
stack1.n++;
}
void pop(struct stack &stack1)
{
stack1.n--;
}
bool isempty(struct stack &stack1)
{
if(stack1.n<=0)
return true;
else
return false;
}
int top(struct stack &stack1)
{
return stack1.a[stack1.n];
}
int main()
{
char m;
int i,j,n,str1[1001],str2[1001];
struct stack stack1,stack2;
int temp[2001];
while(scanf("%d",&n)!=EOF)
{
getchar();
memset(temp,0,sizeof(temp));
stack1.n=0;
stack2.n=0;
for(i=1;i<=n;i++)
{
scanf("%c",&m);
str1[i]=m-'0';
}
getchar();
for(i=1;i<=n;i++)
{
scanf("%c",&m);
str2[i]=m-'0';
}
for(i=n;i>=1;i--)
{
push(stack2,str2[i]);
}
j=0;
for(i=1;i<=n;i++)
{
push(stack1,str1[i]);
temp[j]=1;
j++;
if(top(stack2)==top(stack1))
{
pop(stack2);
pop(stack1);
temp[j]=0;
j++;
}
}
while(top(stack2)==top(stack1)&&!isempty(stack1))
{
pop(stack2);
pop(stack1);
temp[j]=0;
j++;
}
if(isempty(stack1))
{
cout<<"Yes."<<endl;
for(i=0;i<j;i++)
{
if(temp[i]==1)
cout<<"in"<<endl;
else
cout<<"out"<<endl;
}
}
else
{
cout<<"No."<<endl;
}
cout<<"FINISH"<<endl;
}
return 0;
}
多谢了~ 展开
我的代码比较乱。。。。
#include<iostream>
using namespace std;
struct stack
{
int a[1001];
int n;
};
void push(struct stack &stack1,int k)
{
stack1.a[stack1.n+1]=k;
stack1.n++;
}
void pop(struct stack &stack1)
{
stack1.n--;
}
bool isempty(struct stack &stack1)
{
if(stack1.n<=0)
return true;
else
return false;
}
int top(struct stack &stack1)
{
return stack1.a[stack1.n];
}
int main()
{
char m;
int i,j,n,str1[1001],str2[1001];
struct stack stack1,stack2;
int temp[2001];
while(scanf("%d",&n)!=EOF)
{
getchar();
memset(temp,0,sizeof(temp));
stack1.n=0;
stack2.n=0;
for(i=1;i<=n;i++)
{
scanf("%c",&m);
str1[i]=m-'0';
}
getchar();
for(i=1;i<=n;i++)
{
scanf("%c",&m);
str2[i]=m-'0';
}
for(i=n;i>=1;i--)
{
push(stack2,str2[i]);
}
j=0;
for(i=1;i<=n;i++)
{
push(stack1,str1[i]);
temp[j]=1;
j++;
if(top(stack2)==top(stack1))
{
pop(stack2);
pop(stack1);
temp[j]=0;
j++;
}
}
while(top(stack2)==top(stack1)&&!isempty(stack1))
{
pop(stack2);
pop(stack1);
temp[j]=0;
j++;
}
if(isempty(stack1))
{
cout<<"Yes."<<endl;
for(i=0;i<j;i++)
{
if(temp[i]==1)
cout<<"in"<<endl;
else
cout<<"out"<<endl;
}
}
else
{
cout<<"No."<<endl;
}
cout<<"FINISH"<<endl;
}
return 0;
}
多谢了~ 展开
展开全部
不太有时间一点点看 我贴一下我的 你看看是否能找到你的错的地方,可能什么小地方漏思考了吧
#include <iostream>
#include <string>
#include <stack>
using namespace std;
int k,n;
string in,out;
string arr[20];
int main()
{
while(cin>>n)
{
stack<char> s;
int x,y;
cin>>in>>out;
in+='0';
out+='0';
x=y=0;
k=0;
while(out[y]!='0')
{
if(in[x]==out[y])
{
arr[k++]="in";
arr[k++]="out";
x++;
y++;
}
else
{
if(in[x]=='0')
{
if(out[y]==s.top())
{
y++;
s.pop();
arr[k++]="out";
}
else break;
}
else
{
if(!s.empty())
{
if(out[y]==s.top())
{
y++;
s.pop();
arr[k++]="out";
}
else
{
s.push(in[x++]);
arr[k++]="in";
}
}
else
{
s.push(in[x++]);
arr[k++]="in";
}
}
}
}
if(out[y]=='0')
{
cout<<"Yes."<<endl;
for(int i=0;i<k;i++)
cout<<arr[i]<<endl;
cout<<"FINISH"<<endl;
}
else
cout<<"No."<<endl<<"FINISH"<<endl;
}
return 1;
}
#include <iostream>
#include <string>
#include <stack>
using namespace std;
int k,n;
string in,out;
string arr[20];
int main()
{
while(cin>>n)
{
stack<char> s;
int x,y;
cin>>in>>out;
in+='0';
out+='0';
x=y=0;
k=0;
while(out[y]!='0')
{
if(in[x]==out[y])
{
arr[k++]="in";
arr[k++]="out";
x++;
y++;
}
else
{
if(in[x]=='0')
{
if(out[y]==s.top())
{
y++;
s.pop();
arr[k++]="out";
}
else break;
}
else
{
if(!s.empty())
{
if(out[y]==s.top())
{
y++;
s.pop();
arr[k++]="out";
}
else
{
s.push(in[x++]);
arr[k++]="in";
}
}
else
{
s.push(in[x++]);
arr[k++]="in";
}
}
}
}
if(out[y]=='0')
{
cout<<"Yes."<<endl;
for(int i=0;i<k;i++)
cout<<arr[i]<<endl;
cout<<"FINISH"<<endl;
}
else
cout<<"No."<<endl<<"FINISH"<<endl;
}
return 1;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询