码迷,mamicode.com
首页 > 其他好文 > 详细

CodeForces 618B Guess the Permutation

时间:2016-02-02 09:46:46      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:

只要找出当前没用过的数字中,大于或等于当前这一列的最大值就可以

#include<cstdio>
#include<cstring>
#include<cmath>
#include<vector>
#include<algorithm>
using namespace std;

const int maxn=100;
int n;
int x[maxn][maxn];
int ans[maxn];
int flag[maxn];

int main()
{
    scanf("%d",&n);
    for(int i=1; i<=n; i++)
        for(int j=1; j<=n; j++)
            scanf("%d",&x[i][j]);

    memset(flag,0,sizeof flag);

    for(int j=1; j<=n; j++)
    {
        int Max=-1;
        for(int i=1; i<=n; i++) Max=max(Max,x[i][j]);
        for(int i=Max; i<=n; i++)
        {
            if(flag[i]==0)
            {
                ans[j]=i;
                flag[i]=1;
                break;
            }
        }
    }
    for(int i=1; i<=n; i++) printf("%d ",ans[i]);
    printf("\n");
    return 0;
}

 

CodeForces 618B Guess the Permutation

标签:

原文地址:http://www.cnblogs.com/zufezzt/p/5176741.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!