【 제 해 】 낙 곡 P3959 보물 (생 성 트 리 에 세이 화)
1990 단어 해제최소 생 성 트 리에 세이 화
#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
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
LeetCode - 503. 다음 더 큰 요소 II (Next Greater Element II) [중간] - 분석 및 코드 (Java)순환 배열 (마지막 요소 의 다음 요 소 는 배열 의 첫 번 째 요소) 을 지정 하고 모든 요소 의 다음 요 소 를 출력 합 니 다.숫자 x 의 다음 더 큰 요 소 는 배열 에 따라 순 서 를 옮 겨 다 니 는 것 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.