也许放晴会比较好一点


私信TA

用户名:uq_16654036368

访问量:2794

签 名:

等  级
排  名 783
经  验 3765
参赛次数 0
文章发表 34
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

import java.util.*;

public class Main {

    static int count = 0;
    public static void findCombinations(int[] nums, int target, int index) {
        // 若目标值为 0,增加计数器并返回
        if (target == 0) {
            count++;
            return;
        }

        // 若目标值小于 0 或者索引超出数组长度,直接返回
        if (target < 0 || index >= nums.length) {
            return;
        }

        // 保留递归调用
        findCombinations(nums, target - nums[index], index + 1);
        findCombinations(nums, target, index + 1);
    }

    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        // 读取输入值
        int N = scanner.nextInt(); // 数组长度
        int M = scanner.nextInt(); // 目标值
        int[] nums = new int[N]; // 存储输入的数组
        for (int i = 0; i < N; i++) {
            nums[i] = scanner.nextInt(); // 读取数组元素
        }
        findCombinations(nums, M, 0);
        // 输出结果
        System.out.println(count);
    }
}


 

0.0分

1 人评分

新上线《蓝桥杯辅导》课程,近五年的蓝桥杯省赛与国赛真题都有,从读题开始理解题意、梳理思路、实现代码再提交评测全过程,可有效提升获奖比例甚至进国赛!课程介绍、试听请猛击这里

  评论区

  • «
  • »