Codeforces 493C - Vasya and Basketball
2 seconds
256 megabytes
standard input
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.
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).
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.
3
1 2 3
2
5 6
9:6
5
6 7 8 9 10
5
1 2 3 4 5
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的更多相关文章
- 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 ...
- 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 ...
- 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 ...
- cf493C Vasya and Basketball
C. Vasya and Basketball time limit per test 2 seconds memory limit per test 256 megabytes input stan ...
- CodeForces - 837E - Vasya's Function | Educational Codeforces Round 26
/* CodeForces - 837E - Vasya's Function [ 数论 ] | Educational Codeforces Round 26 题意: f(a, 0) = 0; f( ...
- Vasya and Basketball CodeForces - 493C
Vasya follows a basketball game and marks the distances from which each team makes a throw. He knows ...
- 【Codeforces 493C】Vasya and Basketball
[链接] 我是链接,点我呀:) [题意] 题意 [题解] 枚举三分线(离散后)的位置 然后根据预处理的前缀和,快速算出两个队伍的分数. [代码] #include <bits/stdc++.h& ...
- codeforces 493 C Vasya and Basketball
题意:给出三分线的值d,分别有两支队伍,如果小于等于d,得2分,如果大于d,得三分,问使得a-b最大时的a,b 一看到题目,就想当然的去二分了----啥都没分出来---55555555 后来才知道不能 ...
- 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)) ...
随机推荐
- 【题解】 P2234 [HNOI2002]营业额统计
平衡树板题 原题传送门 这道题要用Splay,我博客里有对Splay的详细介绍 这道题目还算比较模板的 每输入一个数,先不要插入 要求一下前驱和后继与x差的最小值并加到答案中 再把x插入平衡树 然后你 ...
- ArrayList集合、String[]数组、String字符串
数组初始化时候必须指定长度,而ArrayList是动态数组,可以根据实际内容改变 //声明stsArr数组并初始化 String[] strArr = new String[]{ "aaa& ...
- mvc 遇到的问题
VS2010无法加载项目,此安装不支持该项目类型. 错误产生的原因是以前是用2010建的,后来用2012打开,可能是经过转换后,2010又打不开了. 用VS2010无法加载项目,提示:无法打开项目文件 ...
- bzoj 2820 YY的GCD - 莫比乌斯反演 - 线性筛
Description 神犇YY虐完数论后给傻×kAc出了一题给定N, M,求1<=x<=N, 1<=y<=M且gcd(x, y)为质数的(x, y)有多少对kAc这种 傻×必 ...
- Codeforces Round #424 (Div. 2, rated, based on VK Cup Finals) Problem C (Codeforces 831C) - 暴力 - 二分法
Polycarp watched TV-show where k jury members one by one rated a participant by adding him a certain ...
- ERROR: unable to bind listening socket for address '127.0.0.1:9000': Address already in use (98) [30-Jan-2018 16:12:27] ERROR: FPM initialization failed解决方法
1.php启动之后发现访问nginx出现502错误,检查nginx.conf发现指定的php socket不存在 2.解决方法nginx修改陈这样,直接把绿色部门的socket写成本地地址+端口就可以 ...
- day 26 元类
一.isinstance issubclass class Person: passclass Student(Person): passstu1=Student()#判断是不是实例print(isi ...
- C++max的使用方法
#include <iostream> //#include <algorithm>//std::min std::max #include <stdint.h> ...
- Oracle为表或字段添加备注
comment on column TableName.ColumnName is ‘备注名’; comment on table TableName is '备注名';
- ODAC(V9.5.15) 学习笔记(四)TCustomDADataSet(4)
6.Options TCustomDADataSet的选择项为TDADataSetOptions,其成员介绍如下表 : 名称 类型 说明 TDADataSetOptions AutoPrepare B ...