1113 - Discover the Web
BACK: If the backward stack is empty, the command is ignored. Otherwise, push the current page on the top of the forward stack. Pop the page from the top of the backward stack, making it the new current page.Standard web browsers contain features to move backward and forward among the pages recently visited. One way to implement these features is to use two stacks to keep track of the pages that can be reached by moving backward and forward. You are asked to implement this. The commands are:
- FORWARD: If the forward stack is empty, the command is ignored. Otherwise, push the current page on the top of the backward stack. Pop the page from the top of the forward stack, making it the new current page.
- VISIT <url>: Push the current page on the top of the backward stack, and make the URL specified the new current page. The forward stack is emptied.
- QUIT: Quit the browser.
The browser initially loads the web page at the URL 'http://www.lightoj.com/'
Input
Input starts with an integer T (≤ 100), denoting the number of test cases.
Each case contains some commands. The keywords BACK, FORWARD, VISIT, and QUIT are all in uppercase. URLs have no whitespace and have at most 50 characters. The end of case is indicated by the QUIT command and it shouldn't be processed. Each case contains at most 100 lines.
Output
For each case, print the case number first. For each command, print the URL of the current page (in a line) after the command is executed if the command is not ignored. Otherwise, print'Ignored'.
Sample Input |
Output for Sample Input |
1VISIT http://uva.onlinejudge.org/VISIT http://topcoder.com/BACK
BACK BACK FORWARD VISIT http://acm.sgu.ru/ BACK BACK FORWARD FORWARD FORWARD QUIT |
Case 1:http://uva.onlinejudge.org/http://topcoder.com/http://uva.onlinejudge.org/
http://www.lightoj.com/ Ignored http://uva.onlinejudge.org/ http://acm.sgu.ru/ http://uva.onlinejudge.org/ http://www.lightoj.com/ http://uva.onlinejudge.org/ http://acm.sgu.ru/ Ignored |
题目类型:简单栈模拟
算法分析:直接按照题目所说的方式进行栈模拟即可
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
#include <iostream> #include <fstream> #include <algorithm> #include <iomanip> #include <cstring> #include <cstdio> #include <cmath> #include <map> #include <string> #include <vector> #include <stack> #include <queue> #include <set> #include <list> #include <ctime> using namespace std; int main() { // ifstream cin ("aaa.txt"); int t, flag = 1; cin >> t; while (t--) { string cmd, cur = "http://www.lightoj.com/"; stack <string> fs, bs; cout << "Case " << flag++ << ":" << endl; while (cin >> cmd) { bool is_valid = true; if (cmd == "QUIT") break; else if (cmd == "VISIT") { string temp; cin >> temp; bs.push (cur); cur = temp; while (!fs.empty ()) fs.pop (); } else if (cmd == "BACK") { if (!bs.empty ()) { fs.push (cur); string temp = bs.top (); bs.pop (); cur = temp; } else is_valid = false; } else if (cmd == "FORWARD") { if (!fs.empty ()) { bs.push (cur); string temp = fs.top (); fs.pop (); cur = temp; } else is_valid = false; } if (is_valid) cout << cur << endl; else cout << "Ignored" << endl; } } return 0; } |
- « 上一篇:lightoj1112
- lightoj1116:下一篇 »