• zoj--1089--Lotto---DFS VS 暴力求解


    Lotto

    Time Limit: 2 Seconds      Memory Limit: 65536 KB

    In a Lotto I have ever played, one has to select 6 numbers from the set {1,2,...,49}. A popular strategy to play Lotto - although it doesn't increase your chance of winning - is to select a subset S containing k (k>6) of these 49 numbers, and then play several games with choosing numbers only from S. For example, for k=8 and S = {1,2,3,5,8,13,21,34} there are 28 possible games: [1,2,3,5,8,13], [1,2,3,5,8,21], [1,2,3,5,8,34], [1,2,3,5,13,21], ... [3,5,8,13,21,34].

    Your job is to write a program that reads in the number k and the set S and then prints all possible games choosing numbers only from S.

    Input Specification

    The input file will contain one or more test cases. Each test case consists of one line containing several integers separated from each other by spaces. The first integer on the line will be the number k (6 < k < 13). Then k integers, specifying the set S, will follow in ascending order. Input will be terminated by a value of zero (0) for k.

    Output Specification

    For each test case, print all possible games, each game on one line. The numbers of each game have to be sorted in ascending order and separated from each other by exactly one space. The games themselves have to be sorted lexicographically, that means sorted by the lowest number first, then by the second lowest and so on, as demonstrated in the sample output below. The test cases have to be separated from each other by exactly one blank line. Do not put a blank line after the last test case.

    Sample Input

    7 1 2 3 4 5 6 7
    8 1 2 3 5 8 13 21 34
    0
    

    Sample Output

    1 2 3 4 5 6
    1 2 3 4 5 7
    1 2 3 4 6 7
    1 2 3 5 6 7
    1 2 4 5 6 7
    1 3 4 5 6 7
    2 3 4 5 6 7
    
    1 2 3 5 8 13
    1 2 3 5 8 21
    1 2 3 5 8 34
    1 2 3 5 13 21
    1 2 3 5 13 34
    1 2 3 5 21 34
    1 2 3 8 13 21
    1 2 3 8 13 34
    1 2 3 8 21 34
    1 2 3 13 21 34
    1 2 5 8 13 21
    1 2 5 8 13 34
    1 2 5 8 21 34
    1 2 5 13 21 34
    1 2 8 13 21 34
    1 3 5 8 13 21
    1 3 5 8 13 34
    1 3 5 8 21 34
    1 3 5 13 21 34
    1 3 8 13 21 34
    1 5 8 13 21 34
    2 3 5 8 13 21
    2 3 5 8 13 34
    2 3 5 8 21 34
    2 3 5 13 21 34
    2 3 8 13 21 34
    2 5 8 13 21 34
    3 5 8 13 21 34
    
     1 //方法1:在poj的discuss里看到的暴强代码:6层循环
     2 #include<stdio.h>//全排列,层循环,强大啊,因为k比较小。太NB了
     3 #include <string.h>
     4 int main()
     5 {
     6     int i,a1,a2,a3,a4,a5,a6,k;
     7     int a[14];
     8     scanf("%d",&k);
     9     while(1)
    10     {
    11         if(k==0) break;
    12         for(i=0;i<k;i++) scanf("%d",&a[i]);
    13             for(a1=0;a1<k-5;a1++)
    14                 for(a2=a1+1;a2<k-4;a2++)
    15                     for(a3=a2+1;a3<k-3;a3++)
    16                         for(a4=a3+1;a4<k-2;a4++)
    17                             for(a5=a4+1;a5<k-1;a5++)
    18                                 for(a6=a5+1;a6<k;a6++)
    19                                     printf("%d %d %d %d %d %d
    ",a[a1],a[a2],a[a3],a[a4],a[a5],a[a6]);
    20                                 scanf("%d",&k);
    21                                 if(k)
    22                                 printf("
    ");
    23     }
    24     return 0;
    25 }
    26 
    27 //方法2:一般做法,dfs
    28 #include <stdio.h>
    29 int k,a[14],b[7];
    30 void dfs(int len,int current)
    31 {
    32     int i;
    33     if(len>6) 
    34     {
    35         for(i=1;i<6;i++)
    36         {
    37             printf("%d ",b[i]);
    38         }
    39         printf("%d
    ",b[i]);
    40     }
    41     else 
    42     {
    43         for(i=current;i<k-(6-len)+1;i++)//这里的循环,确定i的范围并赋值
    44         {
    45             b[len]=a[i];
    46             dfs(len+1,i+1);
    47         }
    48     }
    49 }
    50 int main()
    51 {
    52 
    53     int i;
    54     scanf("%d",&k);
    55     while(1)
    56     {
    57         if(k==0) break;
    58         for(i=1;i<=k;i++)
    59             scanf("%d",&a[i]);
    60         dfs(1,1);
    61         scanf("%d",&k);    
    62         if(k) printf("
    ");
    63     }
    64     return 0;
    65 }
    View Code
  • 相关阅读:
    随笔12 java反射机制
    随笔11 J2EE中常用的名词解释
    随笔⑩ java中的基本数据类型的基础知识
    随笔⑨ java中的变量 --- 类变量(静态变量),final变量,成员变量,局部变量 java中的方法 --- 类方法(静态方法),final方法,成员方法(实例方法),构造方法
    随笔⑧ java中的存根类 --- Stub
    随笔⑦ Java中的比较 ==,equals以及精度对比较的影响
    随笔⑥ 关于线程 --- 线程操作的主要方法
    Jupyter notebook and Octave kernel installation
    [C7] Andrew Ng
    [C6] Andrew Ng
  • 原文地址:https://www.cnblogs.com/zsj-93/p/3178190.html
Copyright © 2020-2023  润新知