牛客网编程练习之解救小易
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了牛客网编程练习之解救小易相关的知识,希望对你有一定的参考价值。
思路:
如果使用遍历的话需要遍历每一个点然后再比较,这样也许可以通过一些样例,但是很容易就是TLE了,所以应该还有更好的办法。
走格子这种问题,如果不能斜着走的话,那么从(1, 1)走到任意一个位置(x, y)都需要在x轴走上(x-1)步,在y轴走上(y-1)步,加起来就是x+y-2步,所以这道题就变成了简单的比大小。
AC代码:
import java.util.Scanner; /** * @author CC11001100 */ public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int[] _1 = new int[sc.nextInt()]; for(int i=0; i<_1.length; i++){ _1[i] = sc.nextInt(); } int min = Integer.MAX_VALUE; for (int i : _1) { min = Math.min(min, i + sc.nextInt()); } System.out.println(min - 2); } }
.
以上是关于牛客网编程练习之解救小易的主要内容,如果未能解决你的问题,请参考以下文章