• Problem H: 小姐姐的QQ号(DFS)


    Contest - 河南省多校连萌(四)

    Problem H: 小姐姐的QQ号

    Time Limit: 1 Sec  Memory Limit: 128 MB
    Submit: 297  Solved: 20

    SubmitWeb Board

    Description

    一天GJJ去超市购物,一位发传单的小姐姐给了他一张名片;GJJ看到名片上有小姐姐的QQ号,特别激动心想能不能将它分解成两段子序列,完全一样又不互相重叠呢(长度为总长度一半)?

    Input

    多实例,每次第一行给出一个T,表示T组数据,如果T=0,则表示结束。
    接下来每一组数据,第一行一个整数n (2<=n<=30且为偶数)。
    第二行输入n个整数;

    Output

    如果可以输出“竟然还有这种操作”,否则输出“没有这种操作”;输出占一行

    Sample Input

    2
    8
    4 2 8 4 9 2 8 9
    8
    1 2 3 4 5 6 7 8
    0

    Sample Output

    竟然还有这种操作
    没有这种操作

    HINT

    第一个样例可以分解成两个完全一样的子序列 4 2 8 9和4 2 8 9;

     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <cmath>
     5 #include <algorithm>
     6 #include <map>
     7 #include <queue>
     8 #include <bits/stdc++.h>
     9 using namespace std;
    10 typedef long long LL;
    11 const int N = 50;
    12 int a[N], b[N], c[N];
    13 int flag, n;
    14 void dfs(int pos,int len1,int len2,int st)//算法的奥秘
    15 {
    16     if(len1>n/2+1 ||len2>n/2+1 ||flag) return ;
    17     if(len1==n/2+1 && len2==n/2+1)
    18     {
    19         flag=1;
    20         return ;
    21     }
    22     if(pos==1)
    23     {
    24         b[1]=a[1];
    25         dfs(pos+1,len1+1,len2,st);
    26     }
    27     else
    28     {
    29         if(a[pos]==b[st])
    30         {
    31             c[len2]=a[pos];
    32             dfs(pos+1,len1,len2+1,st+1);
    33         }
    34         b[len1]=a[pos];
    35         dfs(pos+1,len1+1,len2,st);
    36     }
    37     return ;
    38 }
    39 
    40 int main()
    41 {
    42     int t;
    43     while(scanf("%d", &t),t!=0)
    44     {
    45         while(t--)
    46         {
    47             flag=0;
    48             scanf("%d", &n);
    49             for(int i=1; i<=n; i++) scanf("%d", &a[i]);
    50             dfs(1,1,1,1);
    51             if(flag) printf("竟然还有这种操作
    ");
    52             else printf("没有这种操作
    ");
    53         }
    54     }
    55 
    56     return 0;
    57 }

    题意:给一个长度为n的数组,判断是否可以将其分为两个完全相同长度为n/2的子序列;(子序列是指数字之间在原序列的前后顺序不变)
    解:dfs,从起点遍历,开两个序列数组,
    (1) 当前遍历的位置如果和第一个序列中的相对应的位置相同则加入第二个序列中 第一个序列的对应位置加1,
    (2) 或者加入第一个序列中延伸长度

     //这种题看似很简单其实要是让我来写的话,我可能写不出来,里面用到了递归的思想,这种思想虽然是算法里面最基本的思想,但是理解起来还是有一定的难度的

    永远渴望,大智若愚(stay hungry, stay foolish)
  • 相关阅读:
    003_饿了么chaosmonkey实现
    mysql-5.7 innodb_buffer_pool刷新机制详解
    mysql-5.7中的innodb_buffer_pool_prefetching(read-ahead)详解
    mysql-5.7中innodb_buffer_pool页面淘汰算法
    scrapy 的一个例子
    scrapy 的框架的安装
    python 例程的一个好例子
    django中跨app引用model
    用ansible 完成一次性的工作(ad-Hoc)工作
    django 在建模时的一个手贱
  • 原文地址:https://www.cnblogs.com/h-hkai/p/7416581.html
Copyright © 2020-2023  润新知