计算机学院大学生程序设计竞赛(2015’12) 1003 The collector’s puzzle
#include<cstdio>
#include<algorithm>
using namespace std;
using namespace std; const int maxn=+;
int a[maxn],b[maxn]; int main()
{
int n,m;
while(scanf("%d %d",&n,&m)!=EOF)
{
for(int i=; i<=n; i++) scanf("%d",&a[i]);
for(int i=; i<=m; i++) scanf("%d",&b[i]);
sort(a+,a+n+);
sort(b+,b+m+);
b[]=-;
int now=m,ans=;
for(int i=n; i>=; i--)
{
while(abs(a[i]-b[now])>=abs(a[i]-b[now-])) now--;
ans=ans+abs(a[i]-b[now]);
}
printf("%d\n",ans);
}
return ;
}
计算机学院大学生程序设计竞赛(2015’12) 1003 The collector’s puzzle的更多相关文章
- hdu 计算机学院大学生程序设计竞赛(2015’11)
		搬砖 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65535/65535 K (Java/Others)Total Submissi ... 
- 计算机学院大学生程序设计竞赛(2015’11)1005 ACM组队安排
		1005 ACM组队安排 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Pro ... 
- 计算机学院大学生程序设计竞赛(2015’12)Study Words
		Study Words Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Tota ... 
- 计算机学院大学生程序设计竞赛(2015’12)Polygon
		Polygon Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Su ... 
- 计算机学院大学生程序设计竞赛(2015’12)The Country List
		The Country List Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) ... 
- 计算机学院大学生程序设计竞赛(2015’12) 1008 Study Words
		#include<cstdio> #include<cstring> #include<map> #include<string> #include&l ... 
- 计算机学院大学生程序设计竞赛(2015’12) 1009 The Magic Tower
		#include<cmath> #include<cstdio> #include<cstring> #include<algorithm> using ... 
- 计算机学院大学生程序设计竞赛(2015’12) 1006 01 Matrix
		#include<stdio.h> #include<string.h> #include<iostream> #include<algorithm> ... 
- 计算机学院大学生程序设计竞赛(2015’12) 1004 Happy Value
		#include<cstdio> #include<cstring> #include<cmath> #include<vector> #include ... 
随机推荐
- SQL Server 完美SPLIT函数
			-- SQL Server Split函数 -- Author:zc_0101 -- 说明: -- 支持分割符多字节 -- 使用方法 -- Select * FROM DBO. ... 
- 浅谈测试rhel7新功能时的感受及遇到的问题【转载】
			半夜起来看世界杯,没啥激情,但是又怕错误意大利和英格兰的比赛,就看了rhel7 相关新功能的介绍. rhel7的下载地址: https://access.redhat.com/site/downloa ... 
- Oracle10 多行和并
			SELECT fspc, wmsys.wm_concat (jsrzmc) as jsr FROM dxjsrxx GROUP BY fspc select fspc, LISTAGG(jsrzmc, ... 
- Linq中max min sum avarage count的使用
			一.Max最大值 static void Main(string[] args) { //Max求最大值 ,,,,,,,,,}; //方法1 Linq语句+Linq方法 var result = (f ... 
- JSON中的特殊字符
			使用JSON从后台向前台传输数据的时候,当数据本身含有一些特殊字符,会导致JSON数据的解析出错.这个时候,就需要将JSON中的特殊字符过滤掉. 用下面的方法对即将向前台输出的json字符串进行处理, ... 
- Delphi XE2 生成的.exe 在未安装有Delphi的电脑上运行提示 “丢失 rtl160.bpl”
			解决方案: XE2中加入了多平台的概念,默认的Release模式,也是带包编译,带运行时库的,所以,需要手工设置一下工程选项: 打开工程以后,Project-->Options-->左侧树 ... 
- Log4j 简介及初步应用
			使用2.5版本有问题,暂时没有解决,也许是JDK版本不兼容的原因.因此使用的是log4j-1.2.8.jar 1.三个组件 日志记录器 —— Logger.输出目的地 —— Appender.输出 ... 
- windows ORA-12560: TNS: 协议适配器错误
			1.first it report ORA-12560: TNS: 协议适配器错误 手工设定环境变量如下: set ORACLE_HOME=d:\app\OAadmin\product\11.2.0\ ... 
- idea 端口占用
			netstat -anp | grep 8080 lsof -i:8080 查看8080端口被什么进程占用 kill (-s 9) 12903 -s 9 强制 尽快 12903 上面查出的 PID 其 ... 
- 格式化格林威治时间(Wed Aug 01 00:00:00 CST 2012)
			1.如果格林威治时间时间是date类型.(这种格式最简单) SimpleDateFormat df = new SimpleDateFormat("yyyyMMdd") ... 
