ACM学习历程—HDU5265 pog loves szh II(策略 && 贪心 && 排序)
Description
Input
For each case:
The following line contains two integers,$n(2 \leq n \leq 100000)$,$p(1 \leq p \leq 2^{31}-1)$。
The following line contains $n$ integers $a_i(0 \leq a_i \leq 2^{31}-1)$。
Output
Sample Input
Sample Output
首先对所有的数模p再排序是没有问题的。
然后就是怎么求模p的最大值。
首先如果a[n-2]+a[n-1]小于p,自然最大值就是它。
然而打BC的时候并没有考虑透彻,然后想对最大值进行枚举,看能不能凑到这个最大值,因为直接暴力枚举会T,然后想二分,但是貌似不能直接二分,于是我还是设了一个左值lt和右值rt,rt自然初始为p-1,而lt初始值可以取a[0]+a[n-1]和a[n-2]+a[n-1]里面较大的。然后就是如果mid值能凑到,自然更新lt为mid值,然后判断rt能否取到,否则自减,然而这样是过不了极限数据的。不过貌似OJ测试数据并没有,这样是可以过的。。。不过当时没考虑int爆掉,还有二分也写搓被Hack掉了。
然后就是正规做法了:
考虑到之前模过后进行的排序,所以任意两个数相加的和比p大的值要小于p,所以减一次就能比p小,所以最大值只有两种可能,x+y或x+y-p。
然后对于后者,最大自然是a[n-2]+a[n-1]-p(在得到它们和大于p的前提下),然后只用找x+y的最大了。
然后从小到大枚举每个x,y自然是从大到小排除,得到首个比p小的。
由于对于x+c来说,x+c+y > x+y,所以,如果之前x+y超过p的,x+c+y自然也超过p了。所以往后的y不需要返回继续减小即可。
暴力枚举代码:
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <set>
#include <map>
#include <queue>
#include <string>
#define LL long long using namespace std; int n;
LL s[], p; inline Max(LL x, LL y)
{
if (x < y)
return y;
else
return x;
} void Input()
{
for (int i = ; i < n; ++i)
{
scanf("%I64d", &s[i]);
s[i] %= p;
}
sort(s, s+n);
} int binarySearch(LL key)
{
int lt = , rt = n-, mid;
while (lt <= rt)
{
mid = (lt+rt) >> ;
if(key == s[mid])
return mid;
if(key < s[mid])
rt = mid-;
if(key > s[mid])
lt = mid+;
}
return -;
} bool judge(LL k)
{
for (int i = ; i < n; ++i)
{
if (k-s[i] >= && binarySearch(k-s[i]) != -)
return true;
if (k-s[i] <= && binarySearch(k-s[i]+p) != -)
return true;
}
return false;
} void Work()
{
LL maxs = s[n-]+s[n-];
if (maxs < p)
{
printf("%I64d\n", maxs);
return;
}
LL lt = Max((s[]+s[n-])%p, (s[n-]+s[n-])%p), rt = p-, mid;
while (lt < rt)
{
mid = (lt+rt) >> ;
if (judge(mid))
lt = mid;
if (judge(rt))
{
printf("%I64d\n", rt);
return;
}
else
rt--;
}
printf("%I64d\n", lt);
} int main()
{
//freopen("test.in", "r", stdin);
while (scanf("%d%I64d", &n, &p) != EOF)
{
Input();
Work();
}
return ;
}
正确代码:
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <algorithm>
#define LL long long using namespace std; int n;
LL p, a[]; void Input()
{
for (int i = ; i < n; ++i)
{
scanf("%I64d", &a[i]);
a[i] %= p;
}
sort(a, a+n);
} void Work()
{
LL maxs = a[n-]+a[n-];
if (maxs < p)
{
printf("%I64d\n", maxs);
return;
} maxs -= p;
int lt = , rt = n-;
while (lt < rt)
{
while (a[lt]+a[rt] >= p && lt < rt)
rt--;
if (lt >= rt)
break;
maxs = max(maxs, a[lt]+a[rt]);
lt++;
}
printf("%I64d\n", maxs);
} int main()
{
//freopen("test.in", "r", stdin);
while (scanf("%d%I64d", &n, &p) != EOF)
{
Input();
Work();
}
return ;
}
ACM学习历程—HDU5265 pog loves szh II(策略 && 贪心 && 排序)的更多相关文章
- ACM学习历程—FZU 2144 Shooting Game(计算几何 && 贪心 && 排序)
Description Fat brother and Maze are playing a kind of special (hentai) game in the playground. (May ...
- hdu 5265 pog loves szh II
题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=5265 pog loves szh II Description Pog and Szh are pla ...
- hdu 5265 pog loves szh II STL
pog loves szh II Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://acm.hdu.edu.cn/showproblem.php? ...
- 贪心/二分查找 BestCoder Round #43 1002 pog loves szh II
题目传送门 /* 贪心/二分查找:首先对ai%=p,然后sort,这样的话就有序能使用二分查找.贪心的思想是每次找到一个aj使得和为p-1(如果有的话) 当然有可能两个数和超过p,那么an的值最优,每 ...
- HDU 5265 pog loves szh II (二分查找)
[题目链接]click here~~ [题目大意]在给定 的数组里选两个数取模p的情况下和最大 [解题思路]: 思路见官方题解吧~~ 弱弱献上代码: Problem : 5265 ( pog love ...
- HDU 5265 pog loves szh II 二分
题目链接: hdu:http://acm.hdu.edu.cn/showproblem.php?pid=5265 bc(中文):http://bestcoder.hdu.edu.cn/contests ...
- ACM学习历程—HDU5269 ZYB loves Xor I(位运算 && dfs && 排序)(BestCoder Round #44 1002题)
Problem Description Memphis loves xor very musch.Now he gets an array A.The length of A is n.Now he ...
- HDU 5265 pog loves szh II (技巧)
题意:给一个数字序列,要求再其中找到两个数,其和再模p的结果是最大的,求此和. 思路:先将输入的元素模p,排序.结果可能有两种情况: (1)a+b大于p:肯定由两个最大的数之和来产生. (2)a+b小 ...
- HDU pog loves szh II (数的处理)
题意: 给一个序列,找出两个数字a和b(可以相等但不可相同),要求(a+b)%p的结果最大. 思路: 先将所有元素模p,再排序.要找出a和b,分两种情况,a+b>p和a+b<p.第一种,肯 ...
随机推荐
- MySQL数据表导出某条记录
请按照步骤导出,否则可能会报错: ERROR (HY000): The MySQL server is running with the --secure-file-priv option so it ...
- C++刷题——2736: 指针练习--输出最大值
Description 採用指针法,输出10个整型数中的最大值和最小值 Input 10个整数 Output 最大值和最小值 Sample Input 2 6 3 8 1 5 7 0 4 9 Samp ...
- 自定义一个处理图片的HttpHandler
有时项目里我们必须将图片进行一定的操作,例如水印,下载等,为了方便和管理我们可以自定义一个HttpHander 来负责这些工作 后台: public class ImageHandler : IHtt ...
- Android-彻底地理解Binder
转自:https://blog.csdn.net/huachao1001 https://blog.csdn.net/huachao1001/article/details/51504469 你是不是 ...
- GS发包到MS
GS发包到MS(GS,MS包交互过程) 例:人物上线 首先看看其实如何确定是哪张地图的 数据库首先只保存一个mapid 在share初始化的时候已经初始化了所有map,并保存了map的指针信息,其ke ...
- GS(道具,帮会)定时存储
//最近数据库存储做了重大改变,数据库内部的回头再说,先看看GS这边的 .现在感觉数据库的状态将请求包放入命令队列中,以前是全部放进去,这样让其他的数据库操作不会随着数据库定时器而变慢,GS线程去驱动 ...
- 动态库对外暴露api的方法
1 windows的动态库 在要export的函数声明的前面加上__declspec(dllexport)标识这个函数是从该dll中export出来给其它模块使用的. declspec是declare ...
- js实现随机选取[10,100)中的10个整数,存入一个数组,并排序。 另考虑(10,100]和[10,100]两种情况。
1.js实现随机选取[10,100)中的10个整数,存入一个数组,并排序. <!DOCTYPE html> <html lang="en"> <hea ...
- flex做页面。用来做视频的后台服务器是fms
作为新一代的富客户端互联网技术的佼佼者,Flex这种技术已经被越来越多的公司所采用,被越来越多的用户和程序员所接受.以下列出Flex十大优势: 1.Flex与Flash:可以让普通程序员开发制作Fla ...
- Java基础教程:面向对象编程[2]
Java基础教程:面向对象编程[2] 内容大纲 访问修饰符 四种访问修饰符 Java中,可以使用访问控制符来保护对类.变量.方法和构造方法的访问.Java 支持 4 种不同的访问权限. default ...