[gym102222K]Vertex Covers

time limit per test : 10.0 s
memory limit per test : 256 MB

In graph theory, a vertex cover of a graph G G G is a set of vertices S S S such that each edge of the graph is incident to at least one vertex of the set. That is to say, for every edge ( u , v ) (u,v) (u,v) of the graph, either u u u or v v v is in the vertex cover S S S.

Now, Kamilah shows you an undirected graph G G G without loops or multiple edges, each vertex of which has a weight. She can evaluate a vertex cover S S S of G G G by the product of weights of all vertices belonging to S. Here, the product of an empty set (of numbers) is defined as 1 1 1.

You are asked to calculate the sum of the evaluations described above for all vertex covers of G G G.
Input

The input contains several test cases, and the first line is an integer T T T indicating the number of test cases which is up to 3600.

For each test case, the first line contains three integers n ( 1 ≤ n ≤ 36 ) n(1≤n≤36) n(1n36) and m ( 0 ≤ m ≤ n ( n − 1 ) / 2 ) m(0≤m≤n(n−1)/2) m(0mn(n1)/2) which are the number of vertices and the number of edges in the graph G G G, and q ( 1 0 8 ≤ q ≤ 1 0 9 ) q(10^8≤q≤10^9) q(108q109)which is a prime number for the output.

The second line contains n n n integers, the i i i-th of which is the weight of the i i i-th vertices in G G G. All weights are in the range of 1 1 1 to 1 0 9 10^9 109.

Each of the following m m m lines contains two integers u u u and v ( 1 ≤ u , v ≤ n ) v (1≤u,v≤n) v(1u,vn) describing an edge between the u u u-th vertex and the v v v-th one.
We guarantee that no more than 36 36 36 test cases satisfy n > 18 n>18 n>18.

Output
For each test case, output a line containing KaTeX parse error: Expected 'EOF', got '#' at position 6: Case #̲x: y, where x x x is the test case number starting from 1 1 1, and y y y is the remainder of the answer dividing by q q q.

Example
Input

2
4 3 998244353
1 1 1 1
1 2
2 3
3 4
4 6 998244353
1 1 1 1
1 2
1 3
1 4
2 3
2 4
3 4

Output

Case #1: 8
Case #2: 5

题意:
给定一个n个点m条边的无向图,这个图的一个点覆盖的价值为点集中所有点的权值的乘积,要求求出所有点覆盖的价值和。答案对q取模。

题解:
折半搜索+高维前缀和。
先把边分为前半区,后半区,连接前后半区,三种情况。
然后对于搜索出来的答案,在后半区中查找前半区的答案中符合当前情况的答案。
这个用高维前缀和维护即可。

#include<bits/stdc++.h>
#define ll long long
#define pa pair<int,int>
using namespace std;
int n,m;
ll mod;
int lc,rc,val[44];
ll f[1<<19];
ll ml[19],mr[19],mm[19];
int w33ha(int CASE){
    memset(ml,0,sizeof(ml));
    memset(mr,0,sizeof(mr));
    memset(mm,0,sizeof(mm));
    scanf("%d%d%lld",&n,&m,&mod);
    lc=(n+1)/2;
    rc=n-lc;
    for(int i=0;i<n;i++)scanf("%d",&val[i]);
    for(int i=1;i<=m;i++){
        int u,v;
        scanf("%d%d",&u,&v);
        if(u>v)swap(u,v);
        u--;v--;
        if(u<lc&&v<lc) {
            ml[u]|=(1<<v);
        }
        else if(u>=lc&&v>=lc){
            mr[u-lc]|=(1<<(v-lc));
        }
        else mm[u]|=(1<<(v-lc));
    }
    for(int S=0;S<(1<<rc);S++){
        ll res=1;
        for(int i=0;i<rc;i++){
            if(S&(1<<i))res=(res*val[lc+i])%mod;
            else{
                if((mr[i]|S)!=S)res=0;
            }
        }
        f[S]=res;
    }
    ll ans=0;
    for(int i=0;i<rc;i++){
        for(int j=0;j<(1<<rc);j++){
            if((j&(1<<i))==0)f[j]=(f[j]+f[j|(1<<i)])%mod;
        }
    }
    for(int S=0;S<(1<<lc);S++){
        ll res=1,tov=0;
        for(int i=0;i<lc;i++){
            if(S&(1<<i))res=(res*val[i])%mod;
            else{
                if((ml[i]|S)!=S){
           //         cout<<i<<" " << res << endl;
                    res=0;
                }
                tov|=mm[i];
            }
        }
     //   cout<<S<<"  "<<tov << " " << res <<endl;
        ans+=f[tov]*res;
        ans%=mod;
    }
    printf("Case #%d: %lld\n",CASE,ans);
    return 0;
}
int main(){
    int T;scanf("%d",&T);
    for(int i=1;i<=T;i++)w33ha(i);
    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值