博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 5281 Senior's Gun
阅读量:6165 次
发布时间:2019-06-21

本文共 1732 字,大约阅读时间需要 5 分钟。

Senior's Gun

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 616    Accepted Submission(s): 241


Problem Description
Xuejiejie is a beautiful and charming sharpshooter.
She often carries 
n guns, and every gun has an attack power 
a[i].
One day, Xuejiejie goes outside and comes across 
m monsters, and every monster has a defensive power 
b[j].
Xuejiejie can use the gun 
i to kill the monster 
j, which satisfies 
b[j]a[i], and then she will get 
a[i]b[j] bonus .
Remember that every gun can be used to kill at most one monster, and obviously every monster can be killed at most once.
Xuejiejie wants to gain most of the bonus. It's no need for her to kill all monsters.
 

Input
In the first line there is an integer 
T, indicates the number of test cases.
In each case:
The first line contains two integers 
n
m.
The second line contains 
n integers, which means every gun's attack power.
The third line contains 
m integers, which mean every monster's defensive power.
1n,m100000
109a[i],b[j]109
 

Output
For each test case, output one integer which means the maximum of the bonus Xuejiejie could gain.
 

Sample Input
 
1 2 2 2 3 2 2
 

Sample Output
 
1
 

Source
 

题意:

有n把枪,m仅仅怪物。每把抢都有一个能量值。每一个怪物都有一个耗能值,如今用n把枪去打怪物,每把枪仅仅能用一次,怪物仅仅能打一次,用每i把枪打第j仅仅怪物得到能量值为a[i]-b[j],前提a[i]>=b[j],枪能够不用完,怪物也能够不打完,问最多能得多少的能量值。
解题:枚举用k把枪去打k仅仅怪物。那么每把枪都是最大能量值,每仅仅怪物都是耗能最少的。
#include
#include
using namespace std;const int N = 100005;bool cmp(int a,int b){ return a>b;}__int64 ans,a[N],b[N];int main(){ int T,n,m; scanf("%d",&T); while(T--){ scanf("%d%d",&n,&m); for(int i=0; i


本文转自mfrbuaa博客园博客,原文链接:http://www.cnblogs.com/mfrbuaa/p/5176723.html,如需转载请自行联系原作者

 
你可能感兴趣的文章
初识 Linux (VMware、CentOS 7)
查看>>
使用SpringMVC完成文件上传
查看>>
mysql Load Data InFile 的用法
查看>>
Go new vs make
查看>>
【云宏大讲坛】超融合,融合的不仅是基础架构
查看>>
pytnon入门的一些小实例
查看>>
ubuntu下的dock工具
查看>>
饿了么被上海市市场监督局予以警告处分
查看>>
Java项目读取配置文件时,找不到指定的文件???
查看>>
lua/luajit and tcc
查看>>
前端安全即JS代码安全,前端源码安全探讨!
查看>>
如何快速实现异地不同网络打印机共享
查看>>
openinstall免费服务对App推广有哪些作用?
查看>>
基于Docker的微服务CI CD流水线
查看>>
学好SEO需要掌握哪些知识要点?
查看>>
JetBrains GoLand macv2019.1.2中文版如何换成无牵引模式?
查看>>
电气火灾监控系统工作原理
查看>>
中使馆驳斥《金融时报》“中国网络威胁论”
查看>>
【挨踢人物传】茶乡浪子:“传奇”职场路,一生感谢情(第12期)
查看>>
我的友情链接
查看>>