[中国邮路问题 欧拉回路 最短路 一般图匹配||状压DP] FZU 1009 Jogging Trails

论文:仇荣琦《欧拉回路性质与应用探究》

[中国邮路问题 欧拉回路 最短路 一般图匹配||状压DP] FZU 1009 Jogging Trails_第1张图片

[中国邮路问题 欧拉回路 最短路 一般图匹配||状压DP] FZU 1009 Jogging Trails_第2张图片


本来以为完全图匹配有什么高深的算法 结果去看参考资料里的论文就是带花树 汗 

这道题n小 状压每个点的奇偶性


#include
#include
#include
using namespace std;

inline char nc(){
  static char buf[100000],*p1=buf,*p2=buf;
  if (p1==p2) { p2=(p1=buf)+fread(buf,1,100000,stdin); if (p1==p2) return EOF; }
  return *p1++;
}

inline void read(int &x){
  char c=nc(),b=1;
  for (;!(c>='0' && c<='9');c=nc()) if (c=='-') b=-1;
  for (x=0;c>='0' && c<='9';x=x*10+c-'0',c=nc()); x*=b;
}

const int N=18;

int n,m;
int dis[N][N];
int f[1<>(j-1)&1) lst[++pnt]=j;
      for (int j=1;j<=pnt;j++)
	for (int k=j+1;k<=pnt;k++){
	  s=i^(1<<(lst[j]-1))^(1<<(lst[k]-1));
	  f[s]=min(f[s],f[i]+dis[lst[j]][lst[k]]);
	}
    }
    printf("%d\n",f[0]);
  }
  return 0;
}



你可能感兴趣的:(图论,DP,欧拉回路)