BestCoder Round #49 ($) HDOJ5339 Untitled(dfs)

本文探讨了使用排序和深度优先搜索(DFS)解决特定类型问题的方法,详细介绍了输入输出格式、实例输入输出以及AC代码实现,适用于算法与数据结构领域的学习与实践。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Input
The first line contains one integer T5, which represents the number of testcases. 

For each testcase, there are two lines:

1. The first line contains two integers n and a (1n20,1a106).

2. The second line contains n integers b1,,bn (1in,1bi106).
 

Output
Print T answers in T lines.
 

Sample Input
2 2 9 2 7 2 9 6 7
 

Sample Output
2 -1
 



排序后dfs~


AC代码:


#include "iostream"
#include "cstdio"
#include "cstring"
#include "algorithm"
using namespace std;
const int inf = 0x3f3f3f3f;
int n, a, b[300], ans;
bool cmp(int a, int b)
{
    return a > b;
}
void dfs(int x, int num, int A)
{
    if(!x) {
        ans = min(ans, A);
        return;
    }
    if(num == n) return;
    dfs(x % b[num + 1], num + 1, A + 1);
    dfs(x, num + 1, A);
}
int main(int argc, char const *argv[])
{
    int t;
    scanf("%d", &t);
    while(t--) {
        scanf("%d%d", &n, &a);
        for(int i = 1; i <= n; ++i)
            scanf("%d", &b[i]);
        sort(b + 1, b + 1 + n, cmp);
        ans = inf;
        dfs(a, 0, 0);
        if(ans == inf) printf("-1\n");
        else printf("%d\n", ans);
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值