贪心/二分查找 BestCoder Round #43 1002 pog loves szh II

题目传送门

 1 /*
 2     贪心/二分查找:首先对ai%=p,然后sort,这样的话就有序能使用二分查找。贪心的思想是每次找到一个aj使得和为p-1(如果有的话)
 3                 当然有可能两个数和超过p,那么an的值最优,每次还要和an比较
 4     注意:不能选取两个相同的数
 5     反思:比赛时想到了%p和sort,lower_bound,但是还是没有想到这个贪心方法保证得出最大值,还是题目做的少啊:(
 6 */
 7 #include <cstdio>
 8 #include <algorithm>
 9 #include <cstring>
10 #include <cmath>
11 using namespace std;
12
13 typedef long long ll;
14 const int MAXN = 1e5 + 10;
15 const int INF = 0x3f3f3f3f;
16 ll a[MAXN];
17
18 int main(void)        //BestCoder Round #43 1002 pog loves szh II
19 {
20 //    freopen ("B.in", "r", stdin);
21
22     int n;    ll p;
23     while (scanf ("%d%I64d", &n, &p) == 2)
24     {
25         for (int i=1; i<=n; ++i)    {scanf ("%I64d", &a[i]);    a[i] %= p;}
26         sort (a+1, a+1+n);
27
28         ll ans = 0;
29         for (int i=1; i<=n; ++i)
30         {
31             int pos = lower_bound (a+1+i, a+1+n, p - a[i]) - a;    pos--;
32             if (pos <= n && pos != i)    ans = max (ans, (a[i] + a[pos]) % p);
33             if (i != n)    ans = max (ans, (a[i] + a[n]) % p);
34         }
35
36         printf ("%I64d\n", ans);
37     }
38
39     return 0;
40 }
时间: 2024-10-05 22:29:01

贪心/二分查找 BestCoder Round #43 1002 pog loves szh II的相关文章

字符串处理 BestCoder Round #43 1001 pog loves szh I

题目传送门 1 /* 2 字符串处理:是一道水题,但是WA了3次,要注意是没有加'\0'的字符串不要用%s输出,否则在多组测试时输出多余的字符 3 */ 4 #include <cstdio> 5 #include <algorithm> 6 #include <cstring> 7 #include <cmath> 8 using namespace std; 9 10 typedef long long ll; 11 const int MAXN = 1

HDU 5265 pog loves szh II (二分查找)

[题目链接]click here~~ [题目大意]在给定 的数组里选两个数取模p的情况下和最大 [解题思路]: 思路见官方题解吧~~ 弱弱献上代码: Problem : 5265 ( pog loves szh II ) Judge Status : Accepted RunId : 13961817 Language : G++ Author : javaherongwei Code Render Status : Rendered By HDOJ G++ Code Render Versio

bc #43(hdu 5265) pog loves szh II

pog loves szh II Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 2115    Accepted Submission(s): 609 Problem Description Pog and Szh are playing games.There is a sequence with n numbers, Pog wil

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?pid=5265 Description pog在与szh玩游戏,首先pog找到了一个包含n个数的序列,然后他在这n个数中挑出了一个数A,szh出于对pog的爱,在余下的n−1个数中也挑了一个数B,那么szh与pog的恩爱值为(A+B)对p取模后的余数,pog与szh当然想让恩爱值越高越好,并且他们

HDU5265——贪心——pog loves szh II

Problem Description Pog and Szh are playing games.There is a sequence with $n$ numbers, Pog will choose a number A from the sequence. Szh will choose an another number named B from the rest in the sequence. Then the score will be $(A+B)$ mod $p$.They

ACM学习历程—HDU5265 pog loves szh II(策略 &amp;&amp; 贪心 &amp;&amp; 排序)

Description Pog and Szh are playing games.There is a sequence with $n$ numbers, Pog will choose a number A from the sequence. Szh will choose an another number named B from the rest in the sequence. Then the score will be $(A+B)$ mod $p$.They hope to

hdu 5265 pog loves szh II

函数lower_bound()在first和last中的前闭后开区间进行二分查找,返回大于或等于val的第一个元素位置.如果所有元素都小于val,则返回last的位置 #include<stdio.h> #include<iostream> #include<algorithm> using namespace std; typedef unsigned long long ull; int main() { __int64 n,p,a[100000+5],ans; _

BestCoder Round #43 pog loves szh II (数的处理)

题意:给一个序列,找出两个数字a和b(可以相等但不可相同),要求(a+b)%p的结果最大. 思路:先将所有元素模p,再排序.要找出a和b,分两种情况,a+b>p和a+b<p.第一种,肯定是序列中两个最大的数之和.第二种,用两个指针来扫,要求找到一个小于p的和.两种求最大者.时间复杂度:排序nlogn,扫一遍n,所以nlogn. 1 #include <iostream> 2 #include <cmath> 3 #include <cstdio> 4 #in

HDU ACM 5265 pog loves szh II

题意:求数组中两个不同元素使得两元素和%p最大. 分析: 1.序列中的数可能超过P,将所有数读入后进行模P操作. 2.将取模后的所有数从小到大排序,现在所有数都是小于P且排好序的. 3.假设任意选了两个数X和Y,则0≤X+Y≤2P-2.若X+Y<P,则答案就是X+Y,若X+Y≥P,答案是X+Y-P. 从小到大枚举第一个数,另一个匹配的数显然是从大到小的,可以用POS记录当前另一个匹配的数的位置,每次枚举时POS递减至符合条件.可以做到O(n)的时间复杂度.这题还可以使用二分等方法. #inclu