Ants-穷举算法

package java操作excel;

import java.util.Scanner;


/**
 * Ants
 * n只蚂蚁以每秒1cm的速度在长为Lcm的竿子上爬行,当蚂蚁爬到端点就会掉下去,竿子细两只蚂蚁不能交错通过,只能反向爬回去,
 * 对于每只蚂蚁,他们都知道距离左端的距离xi,但是不知道它当前的方向,计算蚂蚁落下竿子的最长时间和最短时间。
 * @author Administrator
 *
 */
public class Main3 {

	
	private static final int C = 100;
	public static void main(String[] args) {
		Scanner input = new Scanner(System.in);
		int L = input.nextInt();
		int n = input.nextInt();
		int x[] = new int[n];
		for (int i=0;i<x.length;i++) {
			x[i] = input.nextInt();
		}
		int minT = 0;
		int maxT = 0;
		for (int i=0;i<n;i++) {
			minT = Math.max(minT, Math.min(x[i], L-x[i]));
		}
		for (int i=0;i<n;i++) {
			maxT = Math.max(maxT, Math.max(x[i], L-x[i]));
		}
		
		
		System.out.println(minT+"\t"+maxT);
		
	}
	
}

  

转载于:https://www.cnblogs.com/airycode/p/4834995.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值