Exhaustive Serch ( Aizu - ALDS1_5_A )

Posted Dicer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Exhaustive Serch ( Aizu - ALDS1_5_A )相关的知识,希望对你有一定的参考价值。

题目链接 :https://vjudge.net/problem/Aizu-ALDS1_5_A

穷举搜索

 1 #include<stdio.h>
 2 
 3 int n, A[50];
 4 
 5 int solve (int i,in m)                
 6 {
 7     if( m == 0) return 1;           //递归 初始两行的条件都是递归到最底层时使用 
 8     if( i >= n) return 0; 
 9     int res = solve (i + 1, m) || solve(i + 1,m - A[i]);   //前者为0时,后者为1时 
10     return res;
11 }
12 
13 int    main()
14 {
15     int q, M, i;
16     scanf("%d",&n);
17     for( i = 0;i < n;i++ )
18     scanf("%d",&A[i]);
19     scanf("%d",&q);
20     for(i = 0;i < q;i++)
21     {
22         scanf("%d",&M);
23         if( solve(0,M) )    printf("yes\n");
24         else  printf("no\n");
25      } 
26     return 0;
27 }

 

以上是关于Exhaustive Serch ( Aizu - ALDS1_5_A )的主要内容,如果未能解决你的问题,请参考以下文章

未找到规则“re​​act-hooks/exhaustive-deps”的定义

了解 react-hooks/exhaustive-deps useEffect 和调度事件

我可以为自定义挂钩提供 react-hooks/exhaustive-deps 吗?

Exhaustive Search - 穷竭搜索

ESLint 希望 setSate 作为 useEffect 的依赖项,但这会导致无限循环(react-hooks/exhaustive-deps)

MECE分析法(Mutually Exclusive Collectively Exhaustive)