uva- 1593 - Alignment of Code c++,stl练习

来源:互联网 发布:charge是什么软件 编辑:程序博客网 时间:2024/05/16 10:16

题目点我


1593 - Alignment of Code

Time limit: 3.000 seconds


You are working in a team that writes Incredibly Customizable Programming Codewriter (ICPC) which is basically a text editor with bells and whistles. You are working on a module that takes a piece of code containing some definitions or other tabular information and aligns each column on a fixed vertical position, while keeping the resulting code as short as possible, making sure that only whitespaces that are absolutely required stay in the code. So, that the first words on each line are printed at positionp1 = 1; the second words on each line are printed at the minimal possible positionp2, such that all first words end at or before positionp2 - 2; the third words on each line are printed at the minimal possible positionp3, such that all second words end at or before positionp3 - 2, etc.

For the purpose of this problem, the code consists of multiple lines. Each line consists of one or more words separated by spaces. Each word can contain uppercase and lowercase Latin letters, all ASCII punctuation marks, separators, and other non-whitespace ASCII characters (ASCII codes 33 to 126 inclusive). Whitespace consists of space characters (ASCII code 32).

Input 

The input file contains one or more lines of the code up to the end of file. All lines (including the last one) are terminated by a standard end-of-line sequence in the file. Each line contains at least one word, each word is 1 to 80 characters long (inclusive). Words are separated by one or more spaces. Lines of the code can have both leading and trailing spaces. Each line in the input file is at most 180 characters long. There are at most 1000 lines in the input file.

Output 

Write to the output file the reformatted, aligned code that consists of the same number of lines, with the same words in the same order, without trailing and leading spaces, separated by one or more spaces such thati-th word on each line starts at the same positionpi.


Note for the Sample:

The `$ \sqcup$' character in the example below denotes a space character in the actual files (ASCII code 32).

Sample Input 

  start:  integer;    // begins herestop: integer; //  ends here   s:  string;   c:   char; // temp

Sample Output 

start: integer; // begins here stop:  integer; // ends   here s:     string;c:     char;    // temp
#include<iostream>#include<cstdio>#include<algorithm>#include<string>#include<string.h>#include<vector>#include<sstream>const int maxn=1000+7;using namespace std;vector<string> code[maxn];//int cnt;int row, column;int maxlen[200];void input_line(string & line){    //cnt=0;    int t=0;    stringstream ss(line);    string x;    while(ss>>x){        code[row].push_back(x);        t++;    }    column=max(column, t);    row++;}void cmpa(int r){    for(int i=0;i<row;i++){        int siz= code[i].size();        if(siz>=r+1){            int len = code[i][r].length();            maxlen[r]=max(maxlen[r], len);        }    }}int main(){    string line;    while(getline(cin, line)){        if(line==" ") continue;        //row++;        input_line(line);    }    for(int i=0;i<column;i++){        cmpa(i);    }    for(int i=0;i<row;i++){        int len=code[i].size();        for(int j=0;j<len-1;j++){            cout<<code[i][j];            for(int k=0;k< maxlen[j]+1-(int)code[i][j].length();k++){                cout<<" ";            }        }        cout<<code[i][len-1]<<endl;    }    return 0;}



0 0