There is a famous railway station in PopPush City. Country there is incredibly hilly. The station was built in last century. Unfortunately, funds were extremely limited that time. It was possible to establish only a surface track. Moreover, it turned out that the station could be only a dead-end one (see picture) and due to lack of available space it could have only one track. 5, 4, 3, 2, 1 1, 2, 3, 4, 5 Station The local tradition is that every train arriving from the direction A continues in the direction B with coaches reorganized in some way. • Assume that the train arriving from the direction A has NS 1000 coaches numbered in increasing order 1, 2, ., N. • The chief for train reorganizations must know whether it is possible to marshal coaches continuing in the direction B so that their order will be a1, a2, ..., ɑŋ. Help him and write a program that decides whether it is possible to get the required order of coaches. • You can assume that single coaches can be disconnected from the train before they enter the station and that they can move themselves until they are on the track in the direction B. • You can also suppose that at any time there can be located as many coaches as necessary in the station. But once a coach has entered the station it cannot return to the track in the direction A and also once it has left the station in the direction B it cannot return back to the station.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
There is a famous railway station in PopPush City. Country there is incredibly hilly. The station was
built in last century. Unfortunately, funds were extremely limited that time. It was possible to
establish only a surface track. Moreover, it turned out that the station could be only a dead-end
one (see picture) and due to lack of available space it could have only one track.
5, 4, 3, 2, 1
1, 2, 3, 4, 5
Station
The local tradition is that every train arriving from the direction A continues in the direction B with
coaches reorganized in some way.
• Assume that the train arriving from the direction A has N s 1000 coaches numbered in
increasing order 1, 2, ., N.
• The chief for train reorganizations must know whether it is possible to marshal coaches
continuing in the direction B so that their order will be a1, a2, ..., ɑŋ. Help him and write a
program that decides whether it is possible to get the required order of coaches.
• You can assume that single coaches can be disconnected from the train before they enter
the station and that they can move themselves until they are on the track in the direction B.
• You can also suppose that at any time there can be located as many coaches as necessary in
the station. But once a coach has entered the station it cannot return to the track in the
direction A and also once it has left the station in the direction B it cannot return back to the
station.
Transcribed Image Text:There is a famous railway station in PopPush City. Country there is incredibly hilly. The station was built in last century. Unfortunately, funds were extremely limited that time. It was possible to establish only a surface track. Moreover, it turned out that the station could be only a dead-end one (see picture) and due to lack of available space it could have only one track. 5, 4, 3, 2, 1 1, 2, 3, 4, 5 Station The local tradition is that every train arriving from the direction A continues in the direction B with coaches reorganized in some way. • Assume that the train arriving from the direction A has N s 1000 coaches numbered in increasing order 1, 2, ., N. • The chief for train reorganizations must know whether it is possible to marshal coaches continuing in the direction B so that their order will be a1, a2, ..., ɑŋ. Help him and write a program that decides whether it is possible to get the required order of coaches. • You can assume that single coaches can be disconnected from the train before they enter the station and that they can move themselves until they are on the track in the direction B. • You can also suppose that at any time there can be located as many coaches as necessary in the station. But once a coach has entered the station it cannot return to the track in the direction A and also once it has left the station in the direction B it cannot return back to the station.
Program Input
• The input file consists of blocks of lines, each of which is a test case. Each block except the
last describes one train and possibly more requirements for its reorganization. In the first
line of the block there is the integer N, which is the number of coaches in the train. In each
of the next lines of the block there is a permutation of 1, 2, ..., N . For example, if N is 5, and
the permutation could be 5, 3, 2, 1, 4. Your program will take this permutation as input and
determine whether you can marshal the coaches from track A an incoming order 1, 2, 3, 4, 5
to track B with an outgoing order 5, 3, 2, 1, 4 using the station, which can be treated as a
stack.
• The last line of the block contains just 0.
• If a block starts with a zero, the program will terminate.
Transcribed Image Text:Program Input • The input file consists of blocks of lines, each of which is a test case. Each block except the last describes one train and possibly more requirements for its reorganization. In the first line of the block there is the integer N, which is the number of coaches in the train. In each of the next lines of the block there is a permutation of 1, 2, ..., N . For example, if N is 5, and the permutation could be 5, 3, 2, 1, 4. Your program will take this permutation as input and determine whether you can marshal the coaches from track A an incoming order 1, 2, 3, 4, 5 to track B with an outgoing order 5, 3, 2, 1, 4 using the station, which can be treated as a stack. • The last line of the block contains just 0. • If a block starts with a zero, the program will terminate.
Expert Solution
Step 1

#include <iostream>
#include <fstream>
#include <string>
#include <stack>
using namespace std;

int main() {
ifstream myfile;
string s;
   myfile.open ("input.txt");
   if (myfile.is_open()){
   //if file is open and valid
   int n;
   myfile>>n;
   while(n>0){
   int a[n];
   for(int i=0;i<n;i++){ //input the elements
   myfile>>a[i];
   }
   stack<int> mystack;
   mystack.push(1);
   int k=0;
   for(int i=2;i<=n;i++){ // adding the coaches to stack if it is not a desired in track B sequence
   if(!mystack.empty() && mystack.top()==a[k]){
   k++;
   mystack.pop();
   i--;
   continue;
   }
   mystack.push(i);
   }
   bool flag = true;
   while (!mystack.empty()){ // checking the output sequence of the coaches according to the testcase
   if(mystack.top()==a[k]){
   k++;
   mystack.pop();
   }else{
   flag = false;
   break;
   }
   }
   if(flag)
   s = s+"Yes\n";
   else
   s = s + "No\n";
  
   myfile>>n; //taking input for next inline
   if(n==0){ // checking the end of the current block
   myfile>>n;
   }
   }
   myfile.close();
   ofstream out_data("output.txt");
out_data <<s; //output data file
   }else
       cout << "Error opening file\n";
  
   return 0;
}

trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Intelligent Machines
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education