bzoj3613 [Heoi2014]南园满地堆轻絮

Posted 逢山开路 遇水架桥

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj3613 [Heoi2014]南园满地堆轻絮相关的知识,希望对你有一定的参考价值。

传送门:http://www.lydsy.com/JudgeOnline/problem.php?id=3613

【题解】

其实挺显然。。就是最大逆序对差/2

技术分享
# include <stdio.h>
# include <string.h>
# include <iostream>
# include <algorithm>
// # include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef long double ld;
typedef unsigned long long ull;
const int M = 5e6 + 10;

# define RG register
# define ST static

int n, SA, SB, SC, SD;
int a[M], mod; 

inline int F(int x) {
    ll ret = 1ll * SA * x % mod * x % mod * x % mod + 1ll * SB * x % mod * x % mod + 1ll * SC * x % mod + SD;
    return int(ret % mod);
}

int main() {
    cin >> n >> SA >> SB >> SC >> SD >> a[1] >> mod;
    for (int i=2; i<=n; ++i) { 
        a[i] = F(a[i-1]) + F(a[i-2]); 
        if(a[i] >= mod) a[i] -= mod;
    }
    int mx = -1, ans = 0;
    for (int i=1; i<=n; ++i) {
        if(mx >= a[i]) ans = max(ans, (mx-a[i]+1)>>1);
        mx = max(mx, a[i]);
    }
    cout << ans << endl;
    return 0;
}
View Code

 

以上是关于bzoj3613 [Heoi2014]南园满地堆轻絮的主要内容,如果未能解决你的问题,请参考以下文章

BZOJ3613 南园满地堆轻絮-二分法

[luogu] P4105 [HEOI2014]南园满地堆轻絮 (贪心)

P4105 [HEOI2014]南园满地堆轻絮

[10.5模拟赛]T3

bzoj 3611: [Heoi2014]大工程

[Bzoj3611][Heoi2014]大工程(虚树)