uva208递归枚举

#include<cstdio>
#include<cstring>
int n;
int sett[31];
int find2(int x)
{
    return sett[x] = (x==sett[x])?x:find2(sett[x]);
}
int mapp[25][25];
int B[25];
bool  used[25];
int degree=0;
void print(int cur,int *B,bool * used,int k)
{
    if(cur == n) {
            printf("1");
        for(int i=1;i<k;i++) printf(" %d",B[i]); printf("\n");
        degree++;
        return ;
    }
    else {
        for(int j=1;j<=20;j++){
             if(mapp[cur][j]==1 &&  !used[j]) {
//                    printf("*%d*",used[2]);
                used[j]=true;
                B[k]=j;
                k++;
                print(j,B,used,k);
                used[j]=false;k--;

            }
        }
    }

}
int main()
{
    int x,y,cases=1;
    while(~scanf("%d",&n)){
            memset(mapp,0,sizeof(mapp));
        for(int i=0;i<=30;i++) sett[i]=i;
        /**数组越界wrong了!!!千万注意不要越界*/
    while(scanf("%d%d",&x,&y))
    {
        mapp[x][y]=1;
        mapp[y][x]=1;
        if(x==0&&y==0) break;
        int fx = find2(x);
        int fy = find2(y);
        if(fx > fy) sett[fx]=fy;
        else sett[fy]=fx;

    }
//    for(int i=1;i<=6;i++){
//    for(int j=1;j<=6;j++){
//        printf("%d ",mapp[i][j]);
//    }
//    printf("\n");
//    }
        printf("CASE %d:\n",cases++);
         if(find2(1) == find2(n)) {
            memset(used,false,sizeof(used));
//         memset(B,0,);
         used[1]=1;

         degree=0;
        print(1,B,used,1);
        printf("There are %d routes from the firestation to streetcorner %d.\n",degree,n);
         }
         else {
printf("There are 0 routes from the firestation to streetcorner %d.\n",n);
         }

    }

    return 0;
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-10-09 17:26:16

uva208递归枚举的相关文章

Swift枚举-相关值与递归枚举

代码: enum ArithmeticExpression { // 相关值 case Number(Int) // 递归枚举 indirect case Addition(ArithmeticExpression, ArithmeticExpression) indirect case Multiplication(ArithmeticExpression, ArithmeticExpression) indirect case Division(ArithmeticExpression, A

poj1416——dfs递归枚举+记录路径

POJ 1416  dfs递归枚举+记录路径 Shredding Company Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 4456   Accepted: 2555 Description You have just been put in charge of developing a new shredder for the Shredding Company Although a "normal" s

poj2531——dfs递归枚举+小剪枝

POJ 2531  dfs递归枚举 Network Saboteur Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 9580   Accepted: 4560 Description A university network is composed of N computers. System administrators gathered information on the traffic between nodes

C++ 全排列问题——递归枚举法

全排列问题是一道非常经典的递归题目,而递归枚举法求解也是最暴力的一种方法. 例题 洛谷1706 题目描述 输出自然数1到n所有不重复的排列,即n的全排列,要求所产生的任一数字序列中不允许出现重复的数字. 输入格式 一个整数n. 输出格式 由1-n组成的所有不重复的数字序列,每行一个序列. 每个数字保留 5个场宽. 输入样例 3 输出样例 1 2 3 1 3 2 2 1 3 2 3 1 3 1 2 3 2 1 全排列问题--递归枚举法 这是一道经典的递归的题,每次递归枚举第x个数字是几,就是从1到

hdu 5339 递归枚举

只有20个点,从大到小排序然后枚举即可.这里做了一个优化,不模大于自己的数,因为这是徒劳的,我们要求的是最小的r. 注意:不排序就枚举是错误的,想一想,为什么. 1 #include <algorithm> 2 #include <iostream> 3 #include <cstring> 4 #include <cstdio> 5 using namespace std; 6 7 const int INF = 99; 8 const int N = 2

Topcoder SRM 655 DIV1 500 FoldingPaper2 递归 + 枚举

题意:给你一张长W,宽H 的纸,问你能不能者成给定的大小, 每一次折纸只能折成整数大小. 解题思路:递推+枚举   枚举给定大小的长和宽,然后套进 W,H中求最小值  , 折纸策略最优是每次折半. 解题代码: 1 // BEGIN CUT HERE 2 /* 3 4 */ 5 // END CUT HERE 6 #line 7 "FoldingPaper2.cpp" 7 #include <cstdlib> 8 #include <cctype> 9 #incl

swift_枚举 | 可为空类型 | 枚举关联值 | 枚举递归 | 树的概念

***************可为空的类型 var demo2 :we_demo = nil 上面这个代码串的语法是错的 为什么呢, 在Swift中,所有的类型定义出来的属性的默认值都不可以是nil 不管是普通简单值类型还是引用类型 那我就是要让这个属性默认值为空,为nil 怎么办呢,很简单,用语法,在定义这个属性的时,在类型后面声明一个? 这样就表示这个属性除了指定类型的默认值外还可以是一个可为空的类型 在Java中,最常见的错误类型就是NullPoinExecption, 为什么就是要有Nu

枚举排列的两种常见方法

1.递归枚举 1 #include<iostream> 2 using namespace std; 3 4 void print_permutation(int n, int *p, int cur) 5 { 6 if (cur == n) 7 { 8 for (int i = 0; i < n; i++) 9 cout << p[i]; 10 cout << endl; 11 } 12 else for (int i = 1; i <= n; i++)

进击的雨燕-------------枚举

枚举为一组相关的值定义了一个共同的类型,使你可以在你的代码中以类型安全的方式来使用这些值. 如果你熟悉 C 语言,你会知道在 C 语言中,枚举会为一组整型值分配相关联的名称.Swift 中的枚举更加灵活,不必给每一个枚举成员提供一个值.如果给枚举成员提供一个值(称为“原始”值),则该值的类型可以是字符串,字符,或是一个整型值或浮点数. 此外,枚举成员可以指定任意类型的关联值存储到枚举成员中,就像其他语言中的联合体(unions)和变体(variants).每一个枚举成员都可以有适当类型的关联值.