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)) ...
随机推荐
- redis 配置详解
# redis 配置文件示例 # 当你需要为某个配置项指定内存大小的时候,必须要带上单位, # 通常的格式就是 1k 5gb 4m 等酱紫: # # 1k => 1000 bytes # 1kb ...
- Linux一些基本配置
Linux发行版:centos 6.5 配置yum源 wget http://mirrors.163.com/.help/CentOS6-Base-163.repo -P /etc/yum.repos ...
- oracle12c的日志查看
查看GI日志:切换到grid用户 查看DB日志:切换到oracle的目录下 执行[oracle@swnode1 ~]$ adrci [oracle@swnode1 ~]$ adrci ADRCI: R ...
- poj 3687 Labeling Balls - 贪心 - 拓扑排序
Windy has N balls of distinct weights from 1 unit to N units. Now he tries to label them with 1 to N ...
- 【python017--函数对象1】
一.函数 1.定义函数:def 函数名(): 2.调用函数:直接写函数的名称() >>> def MyFirstFunction(): print('this my firs ...
- topcoder srm 709 div1
1 给定一个长度为n的整数数组A,重排列数组A使得下面计算出的X最大:(n不大于15,A中的大于等于0小于等于50) int X=0; for(int i=0;i<n;++i) X=X+(X^A ...
- CentOS 安装 Redis 笔记
Redis 安装 yum install redis -y 在启动 redis-server 之前,你需要修改配置文件/etc/redis.conf: 找到 bind 127.0.0.1,将其注释,这 ...
- 设计模式总结(转自CS-Notes)
转载地址:https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/%E8%AE%BE%E8%AE%A1%E6%A8%A1%E5%BC%8F ...
- git删除远程分支文件,不改变本地文件
git提交项目时候踩的Git的坑 特别 由于准备春招,所以希望各位看客方便的话,能去github上面帮我Star一下项目 https://github.com/Draymonders/Campus-S ...
- hihoCoder week7 完全背包
完全背包 题目链接 https://hihocoder.com/contest/hiho7/problem/1 #include <bits/stdc++.h> using namespa ...