[BZOJ4002][JLOI2015]有意义的字符串(结论+矩阵乘法)

首先得出, b+d2 bd2 是一元二次方程 x2bx+b2d4=0 的两根。
x2bx+b2d4=0 移项得 x2=bx+db24
两边同乘以 xn2 ,可以得出, xn=bxn1+db24xn2
f[i]=(b+d2)i+(bd2)i
此时就容易得出 f[i] 是个整数,并且递推式为 f[i]=bf[i1]+db24f[i2] f[0]=2,f[1]=b 。这时候就能通过矩阵乘法求得 f[n] (注意,相乘会爆long long,因此要用快速乘)。
最后考虑怎样通过 f[n] 求得结果。由于题目限定 b2d<(b+1)2 ,所以 n 是奇数时1<(bd2)n0,否则 n 是偶数时0(bd2)n<1。所以如果满足 b2d 并且 n 为偶数,则答案为f[n]1,否则答案为 f[n]
注意特判 n=0 时结果为 1 <script type="math/tex" id="MathJax-Element-24">1</script>。
代码:

#include <cmath>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;
typedef long long ll;
ll b, d, n, tm; const ll ZZQ = 7528443412579576937ll;
ll add(ll a, ll b) {
    return (1ull * a + 1ull * b) % ZZQ;
}
ll prod(ll a, ll b) {
    ll res = 0;
    while (b) {
        if (b & 1) res = add(res, a);
        a = add(a, a);
        b >>= 1;
    }
    return res;
}
struct cyx {
    int n, m; ll v[4][4];
    cyx() {}
    cyx(int _n, int _m) :
        n(_n), m(_m) {memset(v, 0, sizeof(v));}
    friend inline cyx operator * (cyx a, cyx b) {
        int i, j, k; cyx res = cyx(a.n, b.m);
        for (i = 1; i <= res.n; i++) for (j = 1; j <= res.m; j++)
        for (k = 1; k <= a.m; k++)
            res.v[i][j] = add(res.v[i][j], prod(a.v[i][k], b.v[k][j]));
        return res;
    }
    friend inline cyx operator ^ (cyx a, ll b) {
        int i; cyx res = cyx(a.n, a.m);
        for (i = 1; i <= res.n; i++) res.v[i][i] = 1;
        while (b) {
            if (b & 1) res = res * a;
            a = a * a;
            b >>= 1;
        }
        return res;
    }
} P, Q;
int main() {
    cin >> b >> d >> n; P = cyx(2, 2); Q = cyx(2, 1);
    if (!n) return printf("1\n"), 0;
    tm = (d >> 2) - prod(b + 1 >> 1, b - 1 >> 1);
    P.v[1][1] = b; P.v[1][2] = tm; P.v[2][1] = 1;
    Q.v[1][1] = b; Q.v[2][1] = 2; P = (P ^ n - 1) * Q;
    ll ans = P.v[1][1]; if (d != b * b && !(n & 1)) ans--;
    if (ans < 0) ans += ZZQ; cout << ans << endl;
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值