【 제 해 】 낙 곡 P3959 보물 (생 성 트 리 에 세이 화)

처음에 대부분의 사람들의 생각 은 이것 이 최소 생 성 트 리 문제 이 고 prim 으로 해결 할 수 있다 는 것 이 었 을 것 이다. 그러나 실제 적 으로 배수 와 깊이 의 제한 이 있 기 때문에 이런 알고리즘 이 정확 하지 않다 는 것 을 알 수 있다.그럼 어 떡 하지?우 리 는 가장 작은 점 을 찾기 전에 판단 을 하고 난수 로 모델 을 추출 하여 아주 작은 확률 로 꺼 낸 것 이 작은 확률, 더 작은 확률 로 꺼 낸 것 이 작은................................................
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define INF 0x3f3f3f3f
using namespace std;
const int maxn=20;
const int maxm=1010;
int e[maxn][maxn];
int dis[maxn],depth[maxn];
bool b[maxn],inq[maxn];
struct H
{
	int id;
};
int n,m,ans;
priority_queue q;
queue p;
bool operator < (const H &a,const H &b)
{
	return dis[a.id]>dis[b.id];
}
int f(int x)
{
	memset(dis,INF,sizeof(dis));
	memset(b,false,sizeof(b));
	memset(inq,false,sizeof(inq));
	memset(depth,0,sizeof(depth));
	while(!q.empty()) q.pop();
	while(!p.empty()) p.pop();
	
	dis[x]=0;
	depth[x]=1;
	q.push((H){x});
	inq[x]=true;
	int tot=0;
	for(int i=1;i<=n;i++)
	{
		H now=q.top();
		q.pop();
		while(!q.empty()&&(rand()%10==0))
		{
			p.push(now);
			now=q.top();
			q.pop();
		}
		while(!p.empty()) 
		{
			q.push(p.front());
			p.pop();
		}
		int tmp=now.id;
		b[tmp]=true;
		tot+=dis[tmp];
		if(tot>ans) return INF;
		for(int j=1;j<=n;j++)
		{
			if(!b[j]&&e[tmp][j]!=INF&&dis[j]>depth[tmp]*e[tmp][j])
			{
				dis[j]=depth[tmp]*e[tmp][j];
				depth[j]=depth[tmp]+1;
				if(!inq[j])
				{
					inq[j]=true;
					q.push((H){j});	
				}			
			}
		}
	}
	return tot;
}
int main()
{
	scanf("%d %d",&n,&m);
	memset(e,INF,sizeof(e));
	for(int i=1;i<=m;i++)
	{
		int x,y,z;
		scanf("%d %d %d",&x,&y,&z);
		if(z

좋은 웹페이지 즐겨찾기