UVA400(有关%的使用)

这道题目是一个很好的通过取余数来判断当前的行数和列数的题目

首先所有的元素都从0开始,那么c%col==0时,是当前行的第一列元素,c%col==col-1时,是当前行的最后一个元素

将上面的col换成row也同样适用。

另外还有一点就是知道元素的个数,和每行能够放多少个元素,如何求有多少行的问题:公式是:num_all-1/num_col +1;具体原因稍微想一下就知道了

另外,当所有元素按照列优先输出时,那么每次输出的元素的位置是r+c*row,这个公式可以这么想,因为是列优先,所以可以把每一列看成一个组,那么有多少列就有多少组,而且只可能最后一列(组)是短缺的。那么r就代表在每一组中,元素的编号,然后+c*row,那么就是后面几组中相同编号的元素。

下面贴上代码

#include<cstdio>
#include<iostream>
#include<vector>
#include<string>
#include<algorithm>
using namespace std;
int num_file;
vector<string>Vector;

void print_space(int n)
{
    for(int i = 0;i < n;i++)
    {
        printf(" ");
    }
}
int main()
{
#ifdef local
    freopen("input.txt","r",stdin);
    //freopen("out.txt","w",stdout);
#endif
    while(scanf("%d",&num_file) == 1)
    {
        for(int i = 0;i < 60;i++)
        {
            printf("-");
        }
        printf("\n");
        Vector.clear();
        int longest = 0;
        string file_name;
        for(int i = 0;i < num_file;i++)
        {
            cin >> file_name;
            if(file_name.size() > longest)
            {
                longest = file_name.size();
            }
            Vector.push_back(file_name);
        }
        sort(Vector.begin(),Vector.end());
        int col = (60 - longest) / (longest + 2) + 1;
        int row = (Vector.size() - 1) / col + 1;
//printf("row=%d,col=%d\n",row,col);
        for(int r = 0;r < row;r++)
        {
            for(int c = 0;c < col;c++)
            {
                if((r + c * row) > (Vector.size() - 1))
                    break;
                cout << Vector[r + c * row];
                if(c % col == (col - 1))
                    print_space(longest - Vector[r + c * row].size());
                else
                    print_space(2 + longest - Vector[r + c * row].size());
            }
            printf("\n");
        }
    }
    return 0;
}

原文地址:https://www.cnblogs.com/TorettoRui/p/10421694.html

时间: 2024-11-07 19:40:16

UVA400(有关%的使用)的相关文章

UVa400.Unix ls

题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=341 14438645 400 Unix ls Accepted C++ 0.048 2014-10-28 16:11:17 14438408 400 Unix ls Wrong answer C++ 0.048 2014-10-28 15:41:50 14438381 400 Un

UVa400

400 Unix lsThe computer company you work for is introducing a brand new computer line and is developing a newUnix-like operating system to be introduced along with the new computer. Your assignment is to writethe formatter for the ls function.Your pr

UVA 400 - Unix ls (Unixls命令)

csdn : https://blog.csdn.net/su_cicada/article/details/86773007 例题5-8 Unixls命令(Unix ls,UVa400) 输入正整数n以及n个文件名,按照字典序排序后按列优先的方式左对齐输出. 假设最长文件名有M字符,则最右列有M字符,其他列都是M+2字符. Sample Input 10 tiny 2short4me very_long_file_name shorter size-1 size2 size3 much_lon

2019年8月做题记录

codeforces1199C codeforces1198B codeforces1197A codeforces1197B codeforces1197C codeforces1197D codeforces1198C codeforces1201A codeforces1201B codeforces1201C codeforces1189A codeforces1189B codeforces1189C codeforces1189D1 codeforces1189E codeforce