2019CCPC秦皇岛HDU - 6736 F - Forest Program(dfs找环 组合数学)

简介: 2019CCPC秦皇岛HDU - 6736 F - Forest Program(dfs找环 组合数学)

linkkk

题意:

给出仙人掌图,问有多少种删边的方案使得该图变为一个森林。

思路:

跟上题类似。

从每个环出发考虑方案数,长度为t的环的方案数为2 t − 1,都不删的情况要减去,对于剩下的非环边,有删和不删两种选择,再乘上2 x , x =非环边的数量。

代码:

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;typedef unsigned long long ull;
typedef pair<ll,ll>PLL;typedef pair<int,int>PII;typedef pair<double,double>PDD;
#define I_int ll
inline ll read(){ll x=0,f=1;char ch=getchar();while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}return x*f;}
#define read read()
#define rep(i, a, b) for(int i=(a);i<=(b);++i)
#define dep(i, a, b) for(int i=(a);i>=(b);--i)
ll ksm(ll a,ll b,ll p){ll res=1;while(b){if(b&1)res=res*a%p;a=a*a%p;b>>=1;}return res;}
const int maxn=3e5+100,inf=0x3f3f3f3f,mod=998244353;
vector<int>g[maxn];
int n,m,vis[maxn],siz[maxn];
vector<int>w;
void dfs(int u,int sum,int fa){
  vis[u]=1;
  siz[u]=sum;
  for(auto t:g[u]){
    if(t==fa) continue;
    if(!vis[t]) dfs(t,sum+1,u);
    else if(vis[t]==1){
      w.push_back(siz[u]-siz[t]+1);
    }
  }
  vis[u]=2;
}
int main(){
  while(cin>>n>>m){
    rep(i,1,n) g[i].clear(),siz[i]=vis[i]=0;
    w.clear();
    rep(i,1,m){
      int u=read,v=read;
      g[u].push_back(v);
      g[v].push_back(u);
    }
    rep(i,1,n){
      if(!siz[i]) dfs(i,1,0);
    }
    ll ans=1,tot=0;
    for(auto t:w){
    //  cout<<t<<endl;
      tot+=t;
      ans=(ans*(ksm(2,t,mod)-1+mod))%mod;
    }
    ans=ans*ksm(2,m-tot,mod)%mod;
    cout<<ans<<endl;
  }
    return 0;
}


目录
相关文章
|
6月前
【洛谷 P1219】[USACO1.5]八皇后 Checker Challenge 题解(深度优先搜索+回溯法)
**USACO1.5八皇后挑战**是关于在$n\times n$棋盘上放置棋子的,确保每行、每列及两条主对角线上各有一个且仅有一个棋子。给定$6$作为输入,输出前$3$个解及解的总数。例如,对于$6\times6$棋盘,正确输出应包括解的序列和总数。代码使用DFS解决,通过跟踪对角线占用状态避免冲突。当找到所有解时,显示前三个并计数。样例输入$6$产生输出为解的前三个排列和总数$4$。
41 0
华为机试HJ44:Sudoku(数独问题,深度优先遍历DFS解法)
华为机试HJ44:Sudoku(数独问题,深度优先遍历DFS解法)
150 0
|
机器学习/深度学习 C++
【PAT甲级 - C++题解】1105 Spiral Matrix
【PAT甲级 - C++题解】1105 Spiral Matrix
70 0
codeforces1253——D. Harmonious Graph(并查集)
codeforces1253——D. Harmonious Graph(并查集)
96 0
HDU-1142,A Walk Through the Forest(Dijkstra+DFS)
HDU-1142,A Walk Through the Forest(Dijkstra+DFS)
HDOJ(HDU) 2309 ICPC Score Totalizer Software(求平均值)
HDOJ(HDU) 2309 ICPC Score Totalizer Software(求平均值)
107 0
|
Go
HDOJ/HDU 1085 Holding Bin-Laden Captive!(非母函数求解)
HDOJ/HDU 1085 Holding Bin-Laden Captive!(非母函数求解)
118 0
HDOJ/HDU 1372 Knight Moves(经典BFS)
HDOJ/HDU 1372 Knight Moves(经典BFS)
138 0