Skills - CF613B

Lesha plays the recently published new version of the legendary game hacknet. In this version character skill mechanism was introduced. Now, each player character has exactly n skills. Each skill is represented by a non-negative integer ai — the current skill level. All skills have the same maximum level A.

Along with the skills, global ranking of all players was added. Players are ranked according to the so-called Force. The Force of a player is the sum of the following values:

  • The number of skills that a character has perfected (i.e., such that ai = A), multiplied by coefficient cf.
  • The minimum skill level among all skills (min ai), multiplied by coefficient cm.

Now Lesha has m hacknetian currency units, which he is willing to spend. Each currency unit can increase the current level of any skill by 1 (if it‘s not equal to A yet). Help him spend his money in order to achieve the maximum possible value of the Force.

Input

The first line of the input contains five space-separated integers n, A, cf, cm and m (1 ≤ n ≤ 100 000, 1 ≤ A ≤ 109, 0 ≤ cf, cm ≤ 1000, 0 ≤ m ≤ 1015).

The second line contains exactly n integers ai (0 ≤ ai ≤ A), separated by spaces, — the current levels of skills.

Output

On the first line print the maximum value of the Force that the character can achieve using no more than m currency units.

On the second line print n integers ai (ai ≤ ai ≤ A), skill levels which one must achieve in order to reach the specified value of the Force, while using no more than m currency units. Numbers should be separated by spaces.

Sample test(s)

Input

3 5 10 1 51 3 1

Output

122 5 2 

Input

3 5 10 1 3391 3 1

Output

355 5 5 

Note

In the first test the optimal strategy is to increase the second skill to its maximum, and increase the two others by 1.

In the second test one should increase all skills to maximum.

简单题意

你有n个技能可以学,你有m个技能点可以分配,每个技能的上限值都是A,每个技能都给出了至少要学的等级,然后你要合理分配技能点,使得战力最大

战力=满级技能*Cf+最小等级*Cm

然后我们枚举满级的技能个数,显然我们应该把那些至少学习等级大的点成满级,然后剩下的技能尽量最小等级最大

所以我们一开始从小到大排序,枚举后面i个变成满级,前面的二分最小等级,用前缀和判断可行性,然后计算出战力,更新答案

 1 #include<cstdio>
 2 #include<algorithm>
 3 using namespace std;
 4
 5 const int maxn=100100;
 6
 7 long long A,cf,cm,n,w,a[maxn],b[maxn],s[maxn],ans,tmp1,tmp2;
 8
 9 bool compare(long long x,long long y){
10     return a[x]<a[y];
11 }
12
13 long long find(long long x,long long rr){
14     long long l,r,mid;
15     l=0;r=rr;
16     while(l!=r){
17         mid=(l+r+1)/2;
18         if(a[b[mid]]<x)l=mid;
19         else r=mid-1;
20     }
21     return l;
22 }
23
24 int main(){
25     scanf("%I64d%I64d%I64d%I64d%I64d",&n,&A,&cf,&cm,&w);
26     long long i;
27     for(i=1;i<=n;i++)scanf("%I64d",&a[i]);
28     for(i=1;i<=n;i++)b[i]=i;
29     sort(b+1,b+1+n,compare);
30     for(i=1;i<=n;i++)s[i]=s[i-1]+a[b[i]];
31     w+=s[n];
32     ans=-1;
33     for(i=1;i<=n+1;i++){
34         if(A*(n-i+1)+s[i-1]>w)continue;
35         if(i==1)ans=cf*n+cm*A,tmp1=1;
36         if(i==1)break;
37         long long l=a[b[1]],r=A,mid,tt;
38         while(l!=r){
39             mid=(l+r+1)/2;
40             tt=find(mid,i-1);
41             if(A*(n+1-i)+mid*tt+s[i-1]-s[tt]<=w)l=mid;
42             else r=mid-1;
43         }
44         if(ans<cf*(n+1-i)+l*cm)ans=cf*(n+1-i)+l*cm,tmp1=i,tmp2=l;
45     }
46     printf("%I64d\n",ans);
47     for(i=1;i<tmp1;i++)
48     if(a[b[i]]<tmp2)a[b[i]]=tmp2;
49     for(i=tmp1;i<=n;i++)a[b[i]]=A;
50     for(i=1;i<=n;i++)printf("%I64d ",a[i]);
51     return 0;
52 }

AC代码

时间: 2024-10-15 00:07:50

Skills - CF613B的相关文章

Lesson9 Exchange 2010 Management Skills

Lesson9 Exchange 2010 Management Skills 1-安装 安装好先决条件容易遗漏的一件事: 下面这个服务一定要改为自动 2-委派安装 从第二台Exchange 2010服务器开始,管理员就可以将域用户添加到delegated setup组中,委派域用户完成 Exchange 2010 的部署 委派组: 先在第一台 exchangerun下面的命令 就是让第二台exchange server加入到组织中 回到第二台exchange server上安装exchange

Linux Skills

Linux Skills */--> Linux Skills Table of Contents 1. How to use ramdisk in Ubuntu and Fedora? 2. How to enable ssh server in Ubuntu? 3. How to disable CPU in Linux? 4. How to disable SELinux in Linux? 5. How to deal with the errors in MP3 files in Ry

cf581C Developing Skills

Petya loves computer games. Finally a game that he's been waiting for so long came out! The main character of this game has n different skills, each of which is characterized by an integer ai from 0 to 100. The higher the numberai is, the higher is t

Software development skills for data scientists

Software development skills for data scientists Data scientists often come from diverse backgrounds and frequently don't have much, if any, in the way of formal training in computer science or software development. That being said, most data scientis

10 Skills Every SharePoint Developer Needs

10 Skills Every SharePoint Developer Needs(原文) This blog post guides you through the essential skills for a successful SharePoint developer. Great SharePoint developers know how to use scripting, design, and drafting tools. They have knowledge of out

Add Talents, Not Skills, to Your Team

Add Talents, Not Skills, to Your Team Richard Sheridan Ann Arbor, Michigan, U.S. I USED To hIRE ThE WAy EvERyonE In oUR InDUSTRy hIRED: skills, skills, skills. One day an interview candidate threw cold water in my face, figura- tively, and it changed

ch1 About thinking skills

When confronted with a problem , we think about it. The issue, of course, is that our efforts may be fruitful or they may not, depending on the effectiveness of the thinking done. Good thinking is focused thinking: we need to find the right focus for

Super Memory &amp; Reading Skills

Super Memory & Reading Skills 341views Zaid Ali Alsagoff (91 SlideShares) , e-Learning Manager at IMU Keynote Author Follow 0 16 7 0 Published on Apr 15, 2015 In this workshop at IMU (16/04/2015), we will explore various techniques to stimulate and e

The Essential Skills to Becoming a Master Hacker

2 Networking Skills You need to understand the basics of networking, such as the following. DHCP NAT Subnetting IPv4 IPv6 Public v Private IP DNS Routers and switches VLANs OSI model MAC addressing ARP As we are often exploiting these technologies, t