洛谷——排队接水

洛谷——排队接水,第1张

洛谷——排队接水

题目链接:排队接水

java代码:

import java.util.Arrays;
import java.util.Scanner;

class People implements Comparable{
	int id;
	int time;
	
	public People(int id, int time) {
		super();
		this.id = id;
		this.time = time;
	}
//	升序排列
	public int compareTo(People newPeople) {
		return Integer.compare(this.time, newPeople.time);
	}
}

public class Main {
	
	public static void main(String[] args) {
		
		int n;
		Scanner in = new Scanner(System.in);
		n = in.nextInt();
		
//		初始化对象数组并排序
		People arr[] = new People[n];
		for(int i=0;i					
										


					

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5721918.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-18
下一篇 2022-12-18

发表评论

登录后才能评论

评论列表(0条)

保存