[算法模板]线性基

2020-12-13 03:07

阅读:614

标签:basis   uil   ret   from   博客   tin   image   struct   res   

线性基

GavinZheng敲懒的。。。

menci大佬的线性基博客

模板代码引自menci:

struct LinearBasis
{
    long long a[MAXL + 1];

    LinearBasis()
    {
        std::fill(a, a + MAXL + 1, 0);
    }

    LinearBasis(long long *x, int n)
    {
        build(x, n);
    }

    void insert(long long t)
    {
        for (int j = MAXL; j >= 0; j--)
        {
            if (!t) return;
            if (!(t & (1ll 

技术图片

[算法模板]线性基

标签:basis   uil   ret   from   博客   tin   image   struct   res   

原文地址:https://www.cnblogs.com/GavinZheng/p/11067665.html


评论


亲,登录后才可以留言!