#20411: 請問這個程式可以怎麼改(WA第三行)


walker19576@gmail.com (L0u15)

學校 : 臺北市私立薇閣高級中學
編號 : 96112
來源 : [111.235.252.27]
最後登入時間 :
2023-06-05 13:50:25
c123. 00514 - Rails -- UVa514 | From: [36.227.13.53] | 發表日期 : 2020-01-17 21:45

#include<iostream>
#include<stack>
#include<queue>
using namespace std;

int main()
{
ios::sync_with_stdio(false);
stack<int> station;
queue<int> b;
unsigned int N,f;
while(cin>>N){
if(N==0)
return 0;
while(true){
cin>>f;
if(f==0)
break;
b.push(f);
for(int i=1;i<N;++i){
cin>>f;
b.push(f);
}
for(int i=1;i<=N;++i){
while(!station.empty()&&b.front()==station.top()){
b.pop();
station.pop();
}
if(b.front()==i)
b.pop();
else
station.push(i);
}
while(!station.empty()&&b.front()==station.top()){
b.pop();
station.pop();
}
if(station.empty())
cout<< "Yes\n";
else
cout<< "No\n";
}
}
return 0;
}

 
ZeroJudge Forum