a√跳房子
题目描述
跳房子,也叫跳飞机,是一种世界性的儿童游戏。
游戏的参与者需要步分个回合跳到第1格直到房子的最后一格。
跳房子的过程中,可以向前跳,也可以向后跳。
假设有若干步的步长数量是count,小红每回合可能连续跳的步数都放在数组steps中,请问数组中是否有一种步数的组合,可以让小红两个回合跳到最后一格?
如果有,请输出索引和最小的步数组合,
注意:
- 数组中的步数可以重复,但数组中的元素不能重复使用,
- 提供的数组保证存在满足题目要求的组合,且索引和最小的步数组合是唯一的。
输入描述
第一行输入为小红每回合可能连续跳的步数,它是int整数数组类型。
第二行输入为房子总格数count, 它是int整数类型。
备注
- count≤ 1000
- 0≤ steps.length ≤ 5000
- -10000000≤steps≤10000000
输出描述
返回索引和最小的满足要求的步数组合(顺序保持steps中原有顺序)
public class 跳房子 {public static void main(String[] args) {Scanner sc = new Scanner(System.in);String next = sc.next();int[] array = Arrays.stream(next.substring(1, next.length() - 1).split(",")).mapToInt(new ToIntFunction<String>() {@Overridepublic int applyAsInt(String value) {return Integer.parseInt(value);}}).toArray();int num = sc.nextInt();int minindexsum = Integer.MAX_VALUE;int[] ints = new int[2];for (int i = 0; i < array.length-1; i++) {for (int j = i+1; j < array.length; j++) {if (array[i]+array[j] == num && minindexsum > i+j){ints[0] = array[i];ints[1] = array[j];minindexsum = i+j;break;}}}System.out.println(Arrays.toString(ints));}
}