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

POJ 1861 Network

編輯:C++入門知識

又是個最小生成樹問題。

Special Judge 。答案不唯一。所以樣例看起來是錯的。。。


又是憂傷的G++ AC。 提交C++ 就WA了。。。

又要順道求過路大神看看。


#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define INF 0x7fffffff
#define eps 1e-6
using namespace std;
int n,m;
struct lx
{
    int u,v,len;
    bool vis;
} l[500*1001];
int fa[1001];
bool cmp(lx a,lx b)
{
    return a.len

改了下排序寫法。

然後G++ 依然AC。

C++ 就變成 RE了。


#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define INF 0x7fffffff
#define eps 1e-6
using namespace std;
int n,m;
struct lx
{
    int u,v,len;
} l[500*1001];
int fa[1001];
bool cmp(const lx &a,const lx &b)
{
    return a.lenq;
        for(int i=0;i

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