codeforces 379CNew Year Ratings Change(MAP的用法)

13 篇文章 0 订阅

Description

One very well-known internet resource site (let's call it X) has come up with a New Year adventure. Specifically, they decided to give ratings to all visitors.

There are n users on the site, for each user we know the rating value he wants to get as a New Year Present. We know that user i wants to get at least ai rating units as a present.

The X site is administered by very creative and thrifty people. On the one hand, they want to give distinct ratings and on the other hand, the total sum of the ratings in the present must be as small as possible.

Help site X cope with the challenging task of rating distribution. Find the optimal distribution.

Input

The first line contains integer n(1 ≤ n ≤ 3·105) — the number of users on the site. The next line contains integer sequencea1, a2, ..., an(1 ≤ ai ≤ 109).

Output

Print a sequence of integers b1, b2, ..., bn. Number bi means that user i gets bi of rating as a present. The printed sequence must meet the problem conditions.

If there are multiple optimal solutions, print any of them.

Sample Input

Input
3
5 1 1
Output
5 1 2
Input
1
1000000000
Output
1000000000
很多人没有注意到n最大可到3*10^5,采用暴力的方法 结果可想而知 超
时。。。还有此时用C++中的cin 输入的话也会超时 得用scanf.
暴力的代码如下
#include <iostream>
#include <cstdio>
#include <cstring>
#define N 300010
using namespace std;
int a[N];
int find(int x,int y)
{
    for(int i=0;i<x;i++)
    {
        if(a[i]==y)
        {
            return 0;
        }
    }
    return 1;
}
int main()
{
    int n;
    while(~scanf("%d",&n))
    {
        memset(a,0,sizeof(a));
        int flag=1;
        for(int i=0;i<n;i++)
        {
            scanf("%d",&a[i]);
            for(;find(i,a[i])==0;)
                a[i]++;
                if(flag)
                    flag=0;
                else
                    printf(" ");
            cout<<a[i];
        }
        printf("\n");
    }
    return 0;
}

正确的做法应该是用map 来标记判断数字是否出现过
map<int,int> next  map<主键,储存值>
代码如下
#include <iostream>
#include <cstdio>
#include <map>
using namespace std;
map<int,int> next;
int getNext(int k)
{
    if (next[k]==0)
        return k;
    return next[k]=getNext(next[k]);
}
int main()
{
    int n;
    while(~scanf("%d",&n))
    {

    for (int i=0;i<n;i++)
    {
    int a;
       scanf("%d",&a);
    int r=getNext(a);
     cout<<r<<" ";
     next[r]=r+1;//每次在自身的身上加一,贪心的思想 每次得到的数是最小的
    }            //最后得到的和肯定也是最小的
    }
return 0;
}




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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值