HDU5339——Untitled

本文探讨如何通过选择并操作一组整数,使得初始整数通过连续的模运算最终变为0,着重于寻找操作次数的最小值。通过实例分析,展示了通过排序和暴力求解的方法来解决问题。
部署运行你感兴趣的模型镜像

Problem Description
There is an integer a and n integers b1,,bn. After selecting some numbers from b1,,bn in any order, say c1,,cr, we want to make sure that a mod c1 mod c2 mod mod cr=0 (i.e., a will become the remainder divided by ci each time, and at the end, we want a to become 0). Please determine the minimum value of r. If the goal cannot be achieved, print 1 instead.
 

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

用a去模b中的数,问最少需要多少个数才能使a变为0

感觉模的数字大,需要的数可能就会少一点,所以排个序,再暴力解决


#include <iostream>
#include <cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
int a[30];

bool cmp(int a,int b)
{
    return a > b;
}

int work(int q,int n)
{
    int minx = 0x3f3f3f3f;
    int i,j;
    for(i = 1; i <= n; i++)
    {
        int temp = q;
        for( j = i; j <= n; j++)
        {
            if(temp == 0)
                break;
            else
                temp %= a[j];
        }
        if(temp == 0)
            minx = min(minx,j-i);
    }
    return minx;
}

int main()
{
    int T;
    int n,all;
    scanf("%d",&T);
    while(T--)
    {
        scanf("%d%d",&n,&all);
        for(int i=1; i<=n; i++)
            scanf("%d",&a[i]);
        sort(a+1,a+n+1,cmp);
        int p = work(all,n);
        if(p != 0x3f3f3f3f)
            printf("%d\n",p);
        else
            printf("-1\n");
    }
    return 0;
}







您可能感兴趣的与本文相关的镜像

ComfyUI

ComfyUI

AI应用
ComfyUI

ComfyUI是一款易于上手的工作流设计工具,具有以下特点:基于工作流节点设计,可视化工作流搭建,快速切换工作流,对显存占用小,速度快,支持多种插件,如ADetailer、Controlnet和AnimateDIFF等

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值