5B - Center Alignment【字符串】

B. Center Alignment
time limit per test
1 second
memory limit per test
64 megabytes
input
standard input
output
standard output

Almost every text editor has a built-in function of center text alignment. The developers of the popular in Berland text editor «Textpad» decided to introduce this functionality into the fourth release of the product.

You are to implement the alignment in the shortest possible time. Good luck!

Input

The input file consists of one or more lines, each of the lines contains Latin letters, digits and/or spaces. The lines cannot start or end with a space. It is guaranteed that at least one of the lines has positive length. The length of each line and the total amount of the lines do not exceed 1000.

Output

Format the given text, aligning it center. Frame the whole text with characters «*» of the minimum size. If a line cannot be aligned perfectly (for example, the line has even length, while the width of the block is uneven), you should place such lines rounding down the distance to the left or to the right edge and bringing them closer left or right alternatively (you should start with bringing left). Study the sample tests carefully to understand the output format better.

Examples
input
This  is

Codeforces
Beta
Round
5
output
************
* This  is *
*          *
*Codeforces*
*   Beta   *
*  Round   *
*     5    *
************
input
welcome to the
Codeforces
Beta
Round 5

and
good luck
output
****************
*welcome to the*
*  Codeforces  *
*     Beta     *
*   Round 5    *
*              *
*      and     *
*  good luck   *
****************

题意:

给出一些字符串,让你用 * 号组成的最小矩形把这些字符串围起来,不足的补充空格,所有字符串中间对齐,如果出现长度的奇偶性不同,那就优先空着左边,下次再优先空着右边,输出最终处理的结果


题解:

字符串的处理,使用string 类型比较方便,这道题总体比较简单,但是有一个坑点:空行(长度为0)和所有的其他行是对齐的,处理的时候要特殊注意

错了几遍才想到这种特殊情况,自己的思维还不够细致


/*
http://blog.csdn.net/liuke19950717
*/
#include<cstdio>
#include<iostream>
#include<cstring>
#include<algorithm>
#include<string>
using namespace std;
string s[10005];
int main()
{
    //freopen("shuju.txt","r",stdin);
    int cnt=0,len=0,sign=0;
    while(getline(cin,s[cnt]))
    {
        int tp=s[cnt++].length();
        len=max(len,tp);
    }
    for(int i=0;i<len+2;++i)
    {
        cout <<"*";
    }
    cout <<"\n";
    for(int i=0;i<cnt;++i)
    {
        int tplen=s[i].length();
        if((tplen&1)!=(len&1)&&tplen)//无法完全对齐
        {
            ++sign;
        }
        int tp=len-tplen;
        int ta=tp-tp/2,tb=tp-ta;//a
        if(sign&1)
        {
            swap(ta,tb);
        }
        cout <<"*";
        for(int j=0;j<ta;++j)
        {
            cout <<" ";
        }
        cout <<s[i];
        for(int j=0;j<tb;++j)
        {
            cout <<" ";
        }
        cout <<"*\n";
    }
    for(int i=0;i<len+2;++i)
    {
        cout <<"*";
    }
    cout <<"\n";
    return 0;
}



  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值