NEFU要崛起——第4场 B - Center Alignment
Posted xiaoleiacm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NEFU要崛起——第4场 B - Center Alignment相关的知识,希望对你有一定的参考价值。
B - Center Alignment Time Limit:1000MS Memory Limit:65536KB 64bit IO Format:%I64d & %I64uDescription
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.
Sample Input
InputThis is Codeforces Beta Round 5Output
************ * This is * * * *Codeforces* * Beta * * Round * * 5 * ************Input
welcome to the Codeforces Beta Round 5 and good luckOutput
**************** *welcome to the* * Codeforces * * Beta * * Round 5 * * * * and * * good luck * ****************
题意:看看输入输出就明白了 输出个框框~ 我懂得
代码:
#include<cstdio>
#include<cstring>
#include<iostream>
using namespace std;
const int mm=1111;
char s[mm][mm];
int i,n,m,ml,w,a,b;
void outc(int m,char c)
while(m--)printf("%c",c);
int main()
n=0;
while(gets(s[n]))++n;
for(ml=i=0;i<n;++i)
ml=max(ml,(int)strlen(s[i]));
outc(ml+2,'*');
puts("");
for(w=i=0;i<n;++i)
printf("*");
m=ml-strlen(s[i]);
a=m/2;
if(m&1)a+=w,w=w^1;
b=m-a;
outc(a,' ');
printf("%s",s[i]);
outc(b,' ');
printf("*\\n");
outc(ml+2,'*');
puts("");
return 0;
来自 Pira 's source code
以上是关于NEFU要崛起——第4场 B - Center Alignment的主要内容,如果未能解决你的问题,请参考以下文章
2016NEFU集训第n+3场 G - Tanya and Toys