B. Knights of a Polygonal Table
time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Unlike Knights of a Round Table, Knights of a Polygonal Table deprived of nobility and happy to kill each other. But each knight has some power and a knight can kill another knight if and only if his power is greater than the power of victim. However, even such a knight will torment his conscience, so he can kill no more than kk other knights. Also, each knight has some number of coins. After a kill, a knight can pick up all victim's coins.

Now each knight ponders: how many coins he can have if only he kills other knights?

You should answer this question for each knight.

Input

The first line contains two integers nn and kk (1≤n≤105,0≤k≤min(n−1,10))(1≤n≤105,0≤k≤min(n−1,10)) — the number of knights and the number kk from the statement.

The second line contains nn integers p1,p2,…,pnp1,p2,…,pn (1≤pi≤109)(1≤pi≤109) — powers of the knights. All pipi are distinct.

The third line contains nn integers c1,c2,…,cnc1,c2,…,cn (0≤ci≤109)(0≤ci≤109) — the number of coins each knight has.

Output

Print nn integers — the maximum number of coins each knight can have it only he kills other knights.

Examples
input

Copy
4 2
4 5 9 7
1 2 11 33
output

Copy
1 3 46 36 
input

Copy
5 1
1 2 3 4 5
1 2 3 4 5
output

Copy
1 3 5 7 9 
input

Copy
1 0
2
3
output

Copy
3 
Note

Consider the first example.

  • The first knight is the weakest, so he can't kill anyone. That leaves him with the only coin he initially has.
  • The second knight can kill the first knight and add his coin to his own two.
  • The third knight is the strongest, but he can't kill more than k=2k=2 other knights. It is optimal to kill the second and the fourth knights: 2+11+33=462+11+33=46.
  • The fourth knight should kill the first and the second knights: 33+1+2=3633+1+2=36.

In the second example the first knight can't kill anyone, while all the others should kill the one with the index less by one than their own.

In the third example there is only one knight, so he can't kill anyone.

http://codeforces.com/problemset/problem/994/B

题意:给你n个人,每个人都有一个力量值和一些金钱

现在假设一个人可以攻击任意人,如果攻击力量值比他低的人

就可以得到那个人的金钱,输出每个人攻击最多k个人后最多可以有

多少金钱.

这个题是真的坑

最后FST了,55555,比赛的时候没有注意到一个小知识点

求k个人可以得到最多的钱的时候如果是用二叉平衡树的set容器的话

如果容器中有重复的元素的话会自动去重

multiset集合容器:

------ 和set的区别:set容器中所有的元素必须独一无二,而multiset容器中元素可以重复

但是由于不太会用multiset 所以使用vector,每次都排个序,一样的结果

思路在代码中

#include<bits/stdc++.h>
using namespace std;
const int maxn = 1e5+;
int n,k;
struct node {
int p,id;
} a[maxn];
bool cmp(node a,node b) {
return a.p<b.p;
}
vector<long long> v;
long long c[maxn];
long long ans[maxn];
int main() {
ios::sync_with_stdio(false);
cin>>n>>k;
for(int i=; i<n; i++) {
cin>>a[i].p;
a[i].id=i;
}
for(int i=; i<n; i++) {
cin>>c[i];
}
//k=0时特殊处理
if(k==) {
for(int i=; i<n; i++) {
printf("%d ",c[i]);
}
printf("\n");
return ;
} else {
//对力量值排序
sort(a,a+n,cmp);
ans[a[].id]=;
long long sumk=;//前k大和
for(int i=; i<n; i++) {
if(v.size()<k) {
/在k个数之前时 加上前面这些数的cost
v.push_back(c[a[i-].id]);
sumk+=c[a[i-].id];//前i个数的和
} else if(c[a[i-].id]>v[]) {
//前面数中最大的k个数的和
sumk+=c[a[i-].id]-v[];//更新最大值
v[]=c[a[i-].id];//更新第k大值
}
sort(v.begin(),v.end());//对于k个数重新排序
ans[a[i].id]=sumk;
}
for(int i=; i<n; i++) {
printf("%lld ",ans[i]+c[i]);
}
printf("\n"); }
return ;
}

补上multiset的做法

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn = 1e5+;
int p[maxn],coin[maxn]; bool cmp(int x,int y){
return p[x]<p[y];
} ll ans[maxn];
int id[maxn]; int main(){
ios::sync_with_stdio(false);
cin.tie();
int n,k;
while(cin>>n>>k){
for(int i=;i<n;i++){
cin>>p[i];
}
for(int i=;i<n;i++){
cin>>coin[i];
}
for(int i=;i<n;i++){
ans[i]=coin[i];
id[i]=i;
}
sort(id,id+n,cmp);
multiset<int> s;
multiset<int>::iterator it;
for(int i=;i<n;i++){
int j=;
it=s.end();
if(s.size()!=){
for(it--;j<k;j++,it--){
ans[id[i]]+=*it;
if(it==s.begin()) break;
}
}
s.insert(coin[id[i]]);
}
for(int i=;i<n;i++){
cout<<ans[i]<<" ";
}
cout<<endl;
}
}

code forces 994B的更多相关文章

  1. 思维题--code forces round# 551 div.2

    思维题--code forces round# 551 div.2 题目 D. Serval and Rooted Tree time limit per test 2 seconds memory ...

  2. Code Forces 796C Bank Hacking(贪心)

    Code Forces 796C Bank Hacking 题目大意 给一棵树,有\(n\)个点,\(n-1\)条边,现在让你决策出一个点作为起点,去掉这个点,然后这个点连接的所有点权值+=1,然后再 ...

  3. Code Forces 833 A The Meaningless Game(思维,数学)

    Code Forces 833 A The Meaningless Game 题目大意 有两个人玩游戏,每轮给出一个自然数k,赢得人乘k^2,输得人乘k,给出最后两个人的分数,问两个人能否达到这个分数 ...

  4. Code Forces 543A Writing Code

    题目描述 Programmers working on a large project have just received a task to write exactly mm lines of c ...

  5. code forces 383 Arpa's loud Owf and Mehrdad's evil plan(有向图最小环)

    Arpa's loud Owf and Mehrdad's evil plan time limit per test 1 second memory limit per test 256 megab ...

  6. code forces 382 D Taxes(数论--哥德巴赫猜想)

    Taxes time limit per test 2 seconds memory limit per test 256 megabytes input standard input output ...

  7. code forces Watermelon

    /* * Watermelon.cpp * * Created on: 2013-10-8 * Author: wangzhu */ /** * 若n是偶数,且大于2,则输出YES, * 否则输出NO ...

  8. code forces Jeff and Periods

    /* * c.cpp * * Created on: 2013-10-7 * Author: wangzhu */ #include<cstdio> #include<iostrea ...

  9. Code Forces Gym 100971D Laying Cables(单调栈)

    D - Laying Cables Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u ...

随机推荐

  1. 使用myeclipse创建servlet后输入地址无法访问

    问题: 使用myeclipse创建servlet后输入地址无法访问 1.首先,路径的访问地址是在web.xml里设置的,一般会自动生成(但是可能会和你自己输入的有出入) 你必须按照<url-pa ...

  2. git push 时 fatal: Unable to create 'D:/phpStudy/WWW/green_tree/.git/index.lock': File exists.解决办法

    找到自己的项目,找到.git文件夹,进去把目标文件删除即可 或者使用rm -rf 命令(如果没有那个文件件或者文件,将隐藏文件打开就可以看到了)

  3. 【笔记】objdump命令的使用

    ---恢复内容开始--- objdump命令是Linux下的反汇编目标文件或者可执行文件的命令,它还有其他作用,下面以ELF格式可执行文件test为例详细介绍: objdump -f test 显示t ...

  4. C语言实例解析精粹学习笔记——29

    题目: 将字符行内单字之间的空格平均分配插入到单字之间,以实现字符行排版.也就是输入一个英文句子,单词之间的空格数目不同,将这些空格数平均分配到单词之间,重新输出. 代码如下(是原书中配套的代码,只是 ...

  5. 开放定址法——线性探测(Linear Probing)

    之前我们所采用的那种方法,也被称之为封闭定址法.每个桶单元里存的都是那些与这个桶地址比如K相冲突的词条.也就是说每个词条应该属于哪个桶所对应的列表,都是在事先已经注定的.经过一个确定的哈希函数,这些绿 ...

  6. 笔记-爬虫-去重/bloomfilter

    笔记-爬虫-去重/bloomfilter 1.      去重 为什么要去重? 页面重复:爬的多了,总会有重复的页面,对已爬过的页面肯定不愿意再爬一次. 页面更新:很多页面是会更新的,爬取这种页面时就 ...

  7. 3,Flask 中的模板语言 Jinja2 及 render_template 的深度用法

    Flask中默认的模板语言是Jinja2 现在我们来一步一步的学习一下 Jinja2 捎带手把 render_template 中留下的疑问解决一下 首先我们要在后端定义几个字符串,用于传递到前端 S ...

  8. 16,docker入门

      在学一门新知识的时候,超哥喜欢提问,why?what?how? wiki资料 什么是docker Docker 最初是 dotCloud 公司创始人 Solomon Hykes 在法国期间发起的一 ...

  9. KEIL里如何实现仿真 查看输出波形

    1首先打开keil软件 ,点击options 我们选择在debug 2 点击debug 红色的按钮 3 进入调试界面后 ,打开logic analysis窗口 4 打开窗口后 进入setup 4 会弹 ...

  10. viewDidLoad dispatch_sync

    - (void)viewDidLoad { [super viewDidLoad]; NSLog(@"1"); dispatch_sync(dispatch_get_main_qu ...