Good Bye 2013 C

C. New Year Ratings Change
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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 sequence a1, 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 test(s)
input
3
5 1 1
output
5 1 2
input
1
1000000000
output
1000000000

 

#include <iostream>
#include <stdio.h>
#include <string>
#include <string.h>
#include <algorithm>
#include <stdlib.h>
#include <vector>
using namespace std;
typedef long long LL ;

const int Max_N = 300008 ;
struct Node{
       int  num  ;
       int  id ;
       friend bool operator < (const Node A ,const Node B){
            return A.num < B.num ;
       }
};
Node node[Max_N] ;
int ans[Max_N] ;

int main(){
    int n , i;
    scanf("%d",&n) ;
    for(i = 1 ; i <= n ; i++){
        node[i].id = i ;
        scanf("%d",&node[i].num) ;
    }
    sort(node+1 ,node+1+n) ;
    ans[node[1].id] = node[1].num ;
    for(i = 2 ; i <= n ; i++){
        if(node[i].num <= node[i-1].num)
          node[i].num = node[i-1].num + 1 ;
        ans[node[i].id] = node[i].num ;
    }
    printf("%d",ans[1]) ;
    for(i = 2 ; i <= n ; i++)
        printf(" %d",ans[i]) ;
    puts("") ;
    return 0 ;
}

 

转载于:https://www.cnblogs.com/liyangtianmen/p/3524495.html

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值