C. Vasya and Basketball
time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Vasya follows a basketball game and marks the distances from which each team makes a throw. He knows that each successful throw has value of either 2 or 3 points. A throw is worth 2 points if the distance it was made from doesn't exceed some value of d meters, and a throw is worth 3 points if the distance is larger than d meters, where d is some non-negative integer.

Vasya would like the advantage of the points scored by the first team (the points of the first team minus the points of the second team) to be maximum. For that he can mentally choose the value of d. Help him to do that.

Input

The first line contains integer n (1 ≤ n ≤ 2·105) — the number of throws of the first team. Then follow n integer numbers — the distances of throws ai (1 ≤ ai ≤ 2·109).

Then follows number m (1 ≤ m ≤ 2·105) — the number of the throws of the second team. Then follow m integer numbers — the distances of throws of bi (1 ≤ bi ≤ 2·109).

Output

Print two numbers in the format a:b — the score that is possible considering the problem conditions where the result of subtraction a - b is maximum. If there are several such scores, find the one in which number a is maximum.

Examples
input
3
1 2 3
2
5 6
output
9:6
input
5
6 7 8 9 10
5
1 2 3 4 5
output
15:10
题目大意:找一个三分线d(大于d得3分,小于等于d得2分),使得第一支队伍得分减去第二只队伍得分(a-b)最大,并且输出a:b;如果有好几组答案,输出a最大的那组答案。
方法一:
将两只队伍的距离保存到一个数组c[]中,然后从c[]中枚举出三分线d,求出最大的(a-b),同时记录a和b。(在代码中x表示a,y表示b)
注意:注意边界,不然不能ac,下面以两个不同代码为例:
代码1:
#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;
const int N=;
int a[N],b[N],c[*N];
int main()
{
int n,m,cnt=;
cin>>n;
for(int i=;i<=n;i++)
{
cin>>a[i];
c[cnt++]=a[i];
}
cin>>m;
for(int i=;i<=m;i++)
{
cin>>b[i];
c[cnt++]=b[i];
}
sort(a+,a+n+);
sort(b+,b+m+);
sort(c+,c+cnt);
int ans ;
int x, y;
x = n * ;
y = m * ;
ans = x - y;//上边界(相当于代码2中的c[cnt-1]),是三分线d大于等于c[]最大值的情况,所以两队所有距离都只能得2分
for(int i=cnt-;i>=;i--)//所以这里从cnt-2开始,不过从cnt-1开始也可以ac
{//下边界是c[0]=0,比所有距离都小,所以两队所有距离都得3分
int temp1=upper_bound(a+,a+n+,c[i])-a-;
int temp2=upper_bound(b+,b+m+,c[i])-b-;
if(ans<=temp1*+(n-temp1)*-temp2*-(m-temp2)*)
{
x=temp1*+(n-temp1)*;
y=temp2*+(m-temp2)*;
ans=x-y;
}
}
cout<<x<<":"<<y<<endl;
return ;
}

代码2:

#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;
const int N=;
const int INF=0x3f3f3f3f;
int a[N],b[N],c[*N];
int main()
{
int n,m,cnt=;
cin>>n;
for(int i=;i<=n;i++)
{
cin>>a[i];
c[cnt++]=a[i];
}
cin>>m;
for(int i=;i<=m;i++)
{
cin>>b[i];
c[cnt++]=b[i];
}
sort(a+,a+n+);
sort(b+,b+m+);
sort(c+,c+cnt);
int ans;
int x, y;
x = -INF;
y = INF;
ans = x - y; //初始值不赋值为上边界,赋值成负无穷
for(int i=cnt-;i>=;i--)//这里的上边界是c[cnt-1]
{//下边界是c[0]=0,比所有距离都小,所以两队所有距离都得3分
int temp1=upper_bound(a+,a+n+,c[i])-a-;
int temp2=upper_bound(b+,b+m+,c[i])-b-;
if(ans<=temp1*+(n-temp1)*-temp2*-(m-temp2)*)
{
x=temp1*+(n-temp1)*;
y=temp2*+(m-temp2)*;
ans=x-y;
}
}
cout<<x<<":"<<y<<endl;
return ;
}

方法二:与方法一差不多,不过是从a[]中枚举出三分线d,还有是用循环(而没有用upper_bound()这个函数)来找三分球个数。

代码3:

#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;
const int N=+;
int a[N];
int b[N];
int main()
{
int n,m;
cin>>n;
for(int i=;i<n;i++)cin>>a[i];
cin>>m;
for(int i=;i<m;i++)cin>>b[i];
sort(a,a+n);
sort(b,b+m);
int j=m-;
int ab=n,ba=m;
int x=,y=;//x代表一队三分球个数,y代表二队三分球个数
for(int i=n-;i>=;i--)
{
while(j>=&&a[i]<=b[j])
{
j--;
y++;
}
x++;
if(x-y>=ab-ba)
{
ab=x;
ba=y;
}
}
if(ab<ba)ab=ba=;
cout<<n*+ab<<":"<<m*+ba<<endl;
return ;
}

Codeforces 493C - Vasya and Basketball的更多相关文章

  1. Codeforces Round #281 (Div. 2) C. Vasya and Basketball 二分

    C. Vasya and Basketball time limit per test 2 seconds memory limit per test 256 megabytes input stan ...

  2. Codeforces Round #281 (Div. 2) C. Vasya and Basketball 暴力水题

    C. Vasya and Basketball time limit per test 2 seconds memory limit per test 256 megabytes input stan ...

  3. Codeforces Round #281 (Div. 2) C. Vasya and Basketball 排序

    C. Vasya and Basketball   Vasya follows a basketball game and marks the distances from which each te ...

  4. cf493C Vasya and Basketball

    C. Vasya and Basketball time limit per test 2 seconds memory limit per test 256 megabytes input stan ...

  5. CodeForces - 837E - Vasya's Function | Educational Codeforces Round 26

    /* CodeForces - 837E - Vasya's Function [ 数论 ] | Educational Codeforces Round 26 题意: f(a, 0) = 0; f( ...

  6. Vasya and Basketball CodeForces - 493C

    Vasya follows a basketball game and marks the distances from which each team makes a throw. He knows ...

  7. 【Codeforces 493C】Vasya and Basketball

    [链接] 我是链接,点我呀:) [题意] 题意 [题解] 枚举三分线(离散后)的位置 然后根据预处理的前缀和,快速算出两个队伍的分数. [代码] #include <bits/stdc++.h& ...

  8. codeforces 493 C Vasya and Basketball

    题意:给出三分线的值d,分别有两支队伍,如果小于等于d,得2分,如果大于d,得三分,问使得a-b最大时的a,b 一看到题目,就想当然的去二分了----啥都没分出来---55555555 后来才知道不能 ...

  9. Codeforces 837E. Vasya's Function

    http://codeforces.com/problemset/problem/837/E   题意: f(a, 0) = 0; f(a, b) = 1 + f(a, b - gcd(a, b)) ...

随机推荐

  1. P2044 [NOI2012]随机数生成器

    洛咕原题 正常的矩乘题. 但是,计算过程中会爆long long. 所以,我们要用快速(龟速)乘来解决. 快速乘,也就是把快速幂稍作修改.乘法被分成若干个加法,以时间为代价解决精度问题. #inclu ...

  2. ssh-keygen 命令

    功能 生成.管理和转换认证密钥,包括 RSA 和 DSA 两种密钥,密钥类型可以用 -t 选项指定.如果没有指定则默认生成用于SSH-2的RSA密钥,系统管理员还可以用它产生主机密钥. 通常,这个程序 ...

  3. ORA-12052: cannot fast refresh materialized view

    SQL> execute dbms_mview.refresh ('TX_FAIL_LOG_DAY_MV', 'f'); BEGIN DBMS_MVIEW.REFRESH ('TX_FAIL_L ...

  4. 02: http

    1.1 http简介 1.什么是http 1. HTTP是一个客户端和服务器端请求和应答的标准(TCP) 2. 设计HTTP最初的目的是为了提供一种发布和接收HTML页面的方法 2.http报文格式 ...

  5. opencv学习之路(17)、边缘检测

    一.概述 二.canny边缘检测 #include "opencv2/opencv.hpp" using namespace cv; void main() { //Canny边缘 ...

  6. 【Python55--爬虫:代理】

    一.反爬虫之隐藏 1.网站检查访问的是正常用户还是程序,关键在于User-Agent 1).第一种方法:采用header --修改header(两种方法): -->  在Request之前通过h ...

  7. Access导出excel

    SELECT * INTO [excel .xls].Sheet1 FROM tableName

  8. ODAC(V9.5.15) 学习笔记(四)TMemDataSet (3)

    3.其他 名称 类型 说明 GetBlob TBlob 按照字段名获取当前数据集中某个Blob类型的字段值,并以TBlob对象形式返回 Prepared Boolean 检查Query的SQL是否已准 ...

  9. ibus-libpinyin 无法选择除第一个外的候选词

    其实不只一个人遇到这问题 https://github.com/libpinyin/ibus-libpinyin/issues/127 临时可用的解决办法是: 清理libpinyin的cache目录相 ...

  10. excel2010的使用笔记

    新增的 "工具" 主选项卡 不管是word还是excel 的2010 , 在进行编辑一些图片, 图表, 表格等工具的时候, 都会 "动态"的生成相应的 &quo ...