• 1099 任务执行顺序


    有N个任务需要执行,第i个任务计算时占R[i]个空间,而后会释放一部分,最后储存计算结果需要占据O[i]个空间(O[i] < R[i])。
    例如:执行需要5个空间,最后储存需要2个空间。给出N个任务执行和存储所需的空间,问执行所有任务最少需要多少空间。

    思路:

    除去必要的空间之外,还需要加上运行需要的空间(不会运行完被占用)

    代码:

    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;
            }
        }
    }
    
    
  • 相关阅读:
    PHP如何采集网站数据
    十一. Go并发编程singleflight
    2. Go中defer使用注意事项
    九. Go并发编程context.Context
    3. Go中panic与recover注意事项
    Go 性能提升tips边界检查
    十.Go并发编程channel使用
    八. Go并发编程errGroup
    十二. Go并发编程sync/errGroup
    Go知识盲区闭包
  • 原文地址:https://www.cnblogs.com/somliy/p/10019046.html
Copyright © 2020-2023  润新知