线性基模板

#include
#include
using namespace std;
typedef long long int ll;
const int maxn=1e5+7;
const int mod=1e9+7;
struct  Linear_Basis{
    ll b[63],nb[63],tot; //b为线性基  nb用来求第K小异或值 tot为nb元素个数
	bool flag=false;
    void Init(){    //初始化
        tot=0;
		flag=false;
        memset(b,0,sizeof(b));
        memset(nb,0,sizeof(nb));
    }
    void Ins(ll  x){ //插入
        for(int i=62;i>=0;i--){
            if(x&(1ll<<i)){
                if(!b[i]){
                    b[i]=x;
                    return;
                }
                x^=b[i];
            }
        }
		flag=true;
        return;
    }
    bool Fin(ll x){ //验证存在性
        if(x==0&&b[0])return 1;
        for(int i=62;i>=1;i--){
            int j=i-1;
            if(x&(1<<j)){
                x^=b[i];
                if(!x)return 1;
            }
        }
        return 0;
    }
    ll Max(ll x){   //求最大值
        ll res=x;
        for(int i=62;i>=0;i--){
            res=max(res,res^b[i]);
        }
        return res;
    }
    ll Min(ll x){   //求最小值
        ll res=x;
        for(int i=0;i<=62;i++){
            if(b[i])res^=b[i];
        }
        return res;
    }
    ll Rebuild(){   //第K大
        for(int i=62;i>=0;i--){
            if(b[i]==0)continue;
            for(int j=i-1;j>=0;j--){
                if(b[j]==0)continue;
                if(b[i]&(1ll<<j))b[i]^=b[j];
            }
        }
        for(int i=0;i<=62;i++){
            if(b[i])nb[tot++]=b[i];
        }
    }
    ll Kth_Max(ll k){
        if(flag)k--;  //???
        ll res=0;
        if(k==0)return 0;
        if(k>=(1ll<<tot))return -1;
        for(int i=62;i>=0;i--){
            if(k&(1ll<<i))res^=nb[i];
        }
        return res;
    }
}LB;
void merge(Linear_Basis &a,Linear_Basis &b){//a和b都变成a+b
    for(int i=31;i>=1;i--){
        if(b.b[i]==0)continue;
        a.Ins(b.b[i]);
    }
    b=a;
}
int main(){
    int n;
    scanf("%d",&n);
    return 0;
}

你可能感兴趣的:(数论模版,线性基)