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

hdu 4786 Fibonacci Tree (最小生成樹擴展)

編輯:C++入門知識

hdu 4786 Fibonacci Tree (最小生成樹擴展)


///白邊優先和黑邊優先做兩次最小生成樹
///若有斐波那契樹在這中間為yes
# include 
# include 
# include 
# include 
# include 
using namespace std;
struct node
{
    int x;
    int y;
    int v;
};
struct node a[100010];
int father[100010];
bool cmp1(node a1,node a2)
{
    return a1.va2.v;
}
int find(int x)
{
    if(father[x]==-1)
        return x;
    return father[x]=find(father[x]);
}
int main()
{
    int i,t,n,m,num;
    int cas=0;
    int f[30];
    f[1]=1;
    f[2]=2;
    for(num=3;; num++)
    {
        f[num]=f[num-1]+f[num-2];
        if(f[num]>100010)
            break;
    }
    while(~scanf("%d",&t))
    {
        while(t--)
        {
            scanf("%d%d",&n,&m);
            for(i=0; i=min1&&f[i]<=max1)
                    {
                        flag=1;
                        break;
                    }
                }
                if(flag)
                    printf("Case #%d: Yes\n",++cas);
                else
                    printf("Case #%d: No\n",++cas);
            }

        }
    }
    return 0;
}

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