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

ural 1500 Pass Licenses --- 狀態壓縮dfs

編輯:C++入門知識

這方法真好啊。。

有n個點,m條路,k個執照,每條路都屬於一些執照(擁有指定執照才能走)

求從0走到1 最少需要哪些執照


枚舉 1到1<

對每一種組合dfs 取二進制中1最少的解咯


代碼很簡潔 但熟練運用二進制總是需要多多練習的事。。



#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#define inf 0x3f3f3f3f
using namespace std;

//mp[i][j]中為1的位表示,擁有該位的執照就可以走i到j這條路
int mp[35][35],vis[35],k,n,m,tmp,ans1[35],ans,tmp1[35];

void dfs(int x,int now)
{
    vis[x]=1;
    if(x==1) return;
    for(int i=0;i>=1;
            }
            if(cnt>=ans) continue;

            now=i;
            memset(vis,0,sizeof vis);
            dfs(0,now);
           // printf("vis1:%d i:%d\n",vis[1],i);
            if(vis[1])//能夠走到1 則比較執照數量
            {
                ans=0;cnt=0;
                while(now)
                {
                //    printf("tmp:%d cnt:%d\n",tmp,cnt);
                    if(now&1)
                    {
                        ans1[ans]=cnt;
                        ans++;
                    }
                    now>>=1;
                    cnt++;
                }
            }
        }
        printf("%d\n",ans);
        for(i=0;i

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