http://hzwer.com/3480.html
n只有50啊,是不是很心动呢?
其实我们真的只是暴力就好了;
我们发现2^50次方是存的下的;
那么直接状压搜索就好了,蛮好;
然后加一个估价函数;
对于位运算的坑爹,就不多说了,反正加括号就是了;
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstdlib>
#define Ll long long
using namespace std;
Ll a[55],k;
int n,ans,x,y;
void dfs(int now,Ll k,int g){//k代表现在有哪些数是可以选择的;
if(now>n){ans=max(g,ans);return;}
if(n-now+1+g<=ans)return;
int temp=0;
for(int i=now;i<=n;i++)
if((k|(1ll<<(i-1)))==k)temp++;
if(temp+g<=ans)return;//很显然的估价函数
if((k|(1ll<<(now-1)))==k)dfs(now+1,k&a[now],g+1);
dfs(now+1,k,g);
}
int main()
{
scanf("%d",&n);
k=(1ll<<n)-1;
while(scanf("%d%d",&x,&y)!=-1){
a[x]|=1ll<<(y-1);
a[y]|=1ll<<(x-1);
}
dfs(1,k,0);
printf("%d",ans);
}