【编程】【2017京东java实习生编程题】拍卖

题目:

http://exercise.acmcoder.com/online/online_judge_ques?ques_id=4398&konwledgeId=41


package com.smart.reflect;
/**
 * 第一点:最终的定价肯定是某个客户的出价
 * 第二点:将客户的价格从高到底排序 然后计算出用户数量乘以价格的最大值 返回价格
 * */
import java.util.Arrays;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner scanner=new Scanner(System.in);
        while (scanner.hasNext()){
            int n=scanner.nextInt();
            int m=scanner.nextInt();
            int[] prices=new int[m];
            for (int i = 0; i <m ; i++) {
                prices[i]=scanner.nextInt();
            }
            System.out.println(liRun(n,prices));
        }
    }
    public static int liRun(int n,int[] prices){
        Arrays.sort(prices);  //因为是简单数据类型的数组 因此只能是从后往前计算了
        int max=prices[prices.length-1]*1; //价格最大值
        int index=prices.length-1;
        int low=0;
        if (prices.length>n)
            low=prices.length-n;//需要满足生产的零件数大于等于客户的数量
        for (int i = prices.length-2; i >=low ; i--) {
            int temp=prices[i]*(prices.length-i);//价格数量乘以价格数目
            if (temp>=max)
            {
                max=temp;
                index=i;
            }
        }

        return prices[index];
    }
}

关于Arrays.sort的用法

package com.smart.reflect;
import java.util.Arrays;
import java.util.Collections;
public class Test {

    public static void main(String[] args) {
        //注意,只能用对象类型,不可以使用简单类型 如int[] num则报错
        Integer[] num = {5,8,3,9,1};
        //如果是num是List或 Set,则用Collections.sort(num,Collections.reverseOrder());
        Arrays.sort(num,Collections.reverseOrder());
        for(int i=0;i<num.length;i++){
            System.out.println(num[i]);
        }

    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值