• 1099 任务执行顺序(贪心)


    1099 任务执行顺序
    1 秒 131,072 KB 20 分 3 级题

    思路:

    答案 = 要占用的空间 + 最小运行时净占用

    最小运行时净占用 = min(R[i] - O[i])

    代码:

    package _51_node.greedy;
    
    import java.util.ArrayList;
    import java.util.Scanner;
    
    public class ex_1099 {
        /**
         * 1099 任务执行顺序
         * 1 秒  131,072 KB 20 分 3 级题
         * 有N个任务需要执行,第i个任务计算时占R[i]个空间,而后会释放一部分,最后储存计算结果需要占据O[i]个空间(O[i] < R[i])。
         * 例如:执行需要5个空间,最后储存需要2个空间。给出N个任务执行和存储所需的空间,问执行所有任务最少需要多少空间。
         *
         *  除去必须要的空间之外,还需要加上运行需要的空间
         *
         *  非最优代码
         *
         * @param args
         */
        public static void main(String[] args) {
            Scanner cin = new Scanner(System.in);
            int n = cin.nextInt();
            ArrayList<Point> arrayList = new ArrayList<>();
            for (int i = 1; i <= n; i++) {
                arrayList.add(new Point(cin.nextInt(), cin.nextInt()));
            }
            int ans = 0, index = 100000;
            for (Point point : arrayList) {
                index = Math.min(point.space - point.take, index);
                ans += point.take;
            }
            System.out.println(ans + index);
        }
    
        static class Point {
            int space;
            int take;
    
            public Point(int space, int take) {
                this.space = space;
                this.take = take;
            }
        }
    }
    
    
  • 相关阅读:
    页面生命周期
    设计模式
    算法
    window服务
    Xml
    sql声明变量,及if else语句、while语句的用法
    SQL 使用临时表和临时变量完成update表字段实际案例
    SQL Server遍历表的几种方法
    node快速构建express项目
    词法分析
  • 原文地址:https://www.cnblogs.com/somliy/p/10043691.html
Copyright © 2020-2023  润新知