程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> POJ 3723 Conscription (最大生成樹)

POJ 3723 Conscription (最大生成樹)

編輯:C++入門知識

POJ 3723 Conscription (最大生成樹)


 
最大生成樹。。跟最小生成樹原理一樣。只是排序的順序改變了而已。
代碼如下:

#include 
#include 
#include 
#include 
#include 
#include 
#include
#include 
#include 
using namespace std;
#define LL __int64
#define pi acos(-1.0)
//#pragma comment(linker, /STACK:1024000000)
const int mod=1e9+7;
const int INF=0x3f3f3f3f;
const double eqs=1e-9;
const int MAXN=40000+10;
int bin[30000], cnt;
struct node
{
        int u, v, w;
}edge[60000];
void add(int u, int v, int w)
{
        edge[cnt].v=v;
        edge[cnt].w=w;
        edge[cnt++].u=u;
}
bool cmp(node f1, node f2)
{
        return f1.w>f2.w;
}
int find1(int x)
{
        return bin[x]==x?x:bin[x]=find1(bin[x]);
}
int krus(int n)
{
        int i, f1, f2;
        sort(edge,edge+cnt,cmp);
        int ans=0;
        for(i=0;i

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved