A. Strange Birthday Party1300 / 思维 贪心
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Strange Birthday Party1300 / 思维 贪心相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/1470/A
题目给的礼物的价格是单调递增的,故让序号大的人先拿小的礼物,因为如果不拿礼物那么给的钱是一个特别靠后的一个大值。
故编号大的先拿最小的礼物。
#include<bits/stdc++.h>
using namespace std;
const int N=1e5*3+10;
int a[N],b[N],t,n,m;
//b[i]是递增的
int main(void)
{
cin>>t;
while(t--)
{
cin>>n>>m;
long long int sum=0;
for(int i=1;i<=n;i++) cin>>a[i];
for(int i=1;i<=m;i++) cin>>b[i];
sort(a+1,a+n+1);
for(int i=n,j=1;i>=1;i--)
{
if(a[i]>j)
{
sum+=b[j];
j++;
}else sum+=b[a[i]];
}
cout<<sum<<endl;
}
return 0;
}
以上是关于A. Strange Birthday Party1300 / 思维 贪心的主要内容,如果未能解决你的问题,请参考以下文章
回顾|TRUST - Juliana Lima's Birthday Bash Party Review
Codeforces1545 A. AquaMoon and Strange Sort(思维,排序奇偶性)
Codeforces Round #343 (Div. 2) A. Far Relative’s Birthday Cake