Problem
Given a list of space separated words, reverse the order of the words. Each line of text contains L
letters and W
words. A line will only consist of letters and space characters. There will be exactly one space character between each pair of consecutive words.
Input
The first line of input gives the number of cases, N.
N test cases follow. For each test case there will a line of letters and space characters indicating a list of space separated words. Spaces will not appear at the start or end of a line.
Output
For each test case, output one line containing “Case #x: ” followed by the list of words in reverse order.
Limits
Small dataset
N = 5
1 ≤ L ≤ 25
Large dataset
N = 100
1 ≤ L ≤ 1000
Sample
Input | Output |
3 |
Case #1: test a is this |
C++ Solution:
/* Author : Sreejith Sreekantan Description : Problem B. Reverse Words https://code.google.com/codejam/contest/351101/dashboard#s=p1 */ #include #include #include #include #include #include using namespace std; int main(int argc, char const *argv[]) { int numOfTestInstances; cin >> numOfTestInstances; for (int testInstanceNum = 0; testInstanceNum < numOfTestInstances; ++testInstanceNum) { istringstream in; string s; cin >> ws; getline(cin ,s); replace(s.begin(), s.end(), ' ', '\n'); in.str(s); stack stack_s_rev; while (in >> s) { stack_s_rev.push(s); } cout << "case #" << testInstanceNum+1 << ": "; while(!stack_s_rev.empty()) { cout << stack_s_rev.top() << " "; stack_s_rev.pop(); } cout << endl; } return 0; }