码迷,mamicode.com
首页 > 其他好文 > 详细

牛客网编程练习之解救小易

时间:2017-12-10 18:29:49      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:width   rip   http   div   比较   images   port   mat   abs   

   技术分享图片

技术分享图片

 

思路:

如果使用遍历的话需要遍历每一个点然后再比较,这样也许可以通过一些样例,但是很容易就是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);
 
    }
 
}

 

题目来源: https://www.nowcoder.com/practice/cd763d8541fc4243b8d3b967bb6d6b6a?tpId=85&tqId=29841&tPage=1&rp=1&ru=/ta/2017test&qru=/ta/2017test/question-ranking

 

.

牛客网编程练习之解救小易

标签:width   rip   http   div   比较   images   port   mat   abs   

原文地址:http://www.cnblogs.com/cc11001100/p/8017509.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!