Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
38139 | LYLAKIOIAKIOI | 【BJ】T2 | C++ | 解答错误 | 0 | 49 MS | 186396 KB | 527 | 2025-06-23 20:54:54 |
#include<bits/stdc++.h> using namespace std; const int N=19,MS=132000,mod=998244353; inline void Add(int &a,int b){a+=b;if(a>=mod) a-=mod;} inline void Sub(int &a,int b){a-=b;if(a<0) a+=mod;} inline void Mul(int &a,int b){a=1ll*a*b%mod;} bool Mbg; int f[N][MS],tf[N][MS];//count-tmp int dc[N][N];//decval int a[N][N]; int n; #define ppc __builtin_popcount int tmp[N][MS],trf[N][N][MS]; int tof[N][MS<<1],ito[N][MS<<1]; //id-set,id-power-set bool Med; int main(){ memset(trf,0,sizeof(trf)); return 0; }