贪心/二分查找 BestCoder Round #43 1002 pog loves szh II
生活随笔
收集整理的這篇文章主要介紹了
贪心/二分查找 BestCoder Round #43 1002 pog loves szh II
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
?
題目傳送門
1 /* 2 貪心/二分查找:首先對ai%=p,然后sort,這樣的話就有序能使用二分查找。貪心的思想是每次找到一個(gè)aj使得和為p-1(如果有的話) 3 當(dāng)然有可能兩個(gè)數(shù)和超過p,那么an的值最優(yōu),每次還要和an比較 4 注意:不能選取兩個(gè)相同的數(shù) 5 反思:比賽時(shí)想到了%p和sort,lower_bound,但是還是沒有想到這個(gè)貪心方法保證得出最大值,還是題目做的少啊:( 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 }?
轉(zhuǎn)載于:https://www.cnblogs.com/Running-Time/p/4560261.html
創(chuàng)作挑戰(zhàn)賽新人創(chuàng)作獎(jiǎng)勵(lì)來咯,堅(jiān)持創(chuàng)作打卡瓜分現(xiàn)金大獎(jiǎng)總結(jié)
以上是生活随笔為你收集整理的贪心/二分查找 BestCoder Round #43 1002 pog loves szh II的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 申请交行康美药业信用卡有哪些条件?该如何
- 下一篇: 浦发青春信用卡怎么样?年轻人专属潮卡