zoukankan      html  css  js  c++  java
  • Codility---MinAvgTwoSlice

    Task description

    A non-empty zero-indexed array A consisting of N integers is given. A pair of integers (P, Q), such that 0 ≤ P < Q < N, is called a slice of array A (notice that the slice contains at least two elements). The average of a slice (P, Q) is the sum of A[P] + A[P + 1] + ... + A[Q] divided by the length of the slice. To be precise, the average equals (A[P] + A[P + 1] + ... + A[Q]) / (Q − P + 1).

    For example, array A such that:

    A[0] = 4 A[1] = 2 A[2] = 2 A[3] = 5 A[4] = 1 A[5] = 5 A[6] = 8

    contains the following example slices:

    • slice (1, 2), whose average is (2 + 2) / 2 = 2;
    • slice (3, 4), whose average is (5 + 1) / 2 = 3;
    • slice (1, 4), whose average is (2 + 2 + 5 + 1) / 4 = 2.5.

    The goal is to find the starting position of a slice whose average is minimal.

    Write a function:

    class Solution { public int solution(int[] A); }

    that, given a non-empty zero-indexed array A consisting of N integers, returns the starting position of the slice with the minimal average. If there is more than one slice with a minimal average, you should return the smallest starting position of such a slice.

    For example, given array A such that:

    A[0] = 4 A[1] = 2 A[2] = 2 A[3] = 5 A[4] = 1 A[5] = 5 A[6] = 8

    the function should return 1, as explained above.

    Assume that:

    • N is an integer within the range [2..100,000];
    • each element of array A is an integer within the range [−10,000..10,000].

    Complexity:

    • expected worst-case time complexity is O(N);
    • expected worst-case space complexity is O(N), beyond input storage (not counting the storage required for input arguments).

    Elements of input arrays can be modified.

    Solution
     
    Programming language used: Java
    Total time used: 8 minutes
    Code: 04:06:50 UTC, java, final, score:  100
    // you can also use imports, for example:
    // import java.util.*;
    
    // you can write to stdout for debugging purposes, e.g.
    // System.out.println("this is a debug message");
    
    class Solution {
        public int solution(int[] A) {
            // write your code in Java SE 8
            int minAvgIdx=0;
            double minAvg = (A[0]+A[1])/2;
            double currAvg;
            for(int i=0; i< A.length-2; i++) {
                //two number 
                currAvg = (double)(A[i] +A[i+1])/2;
                if(minAvg > currAvg) {
                    minAvg = currAvg;
                    minAvgIdx = i;
                }
                
                //three number 
                currAvg =(double) (A[i] +A[i+1] +A[i+2])/3;
                if(minAvg > currAvg) {
                    minAvg = currAvg;
                    minAvgIdx = i;
                }
            }
            currAvg =(double) (A[A.length-2] +A[A.length-1])/2;
            if(minAvg > currAvg) {
                minAvg = currAvg;
                minAvgIdx = A.length-2;
            }
            return  minAvgIdx;
        }
    }


    https://codility.com/demo/results/trainingP69B3H-F2P/
  • 相关阅读:
    【二分图】HEOI2012 朋友圈
    【转载】动态规划—各种 DP 优化
    【默哀】京阿尼纵火案一周年
    【暑假集训】HZOI2019 Luogu P1006 传纸条 二三四维解法
    【暑假集训】HZOI2019 水站 多种解法
    最小二乘法求线性回归方程
    51Nod 最大M子段和系列 V1 V2 V3
    【博弈论】51Nod 1534 棋子游戏
    【最短路】CF 938D Buy a Ticket
    51nod1524 最大子段和V2
  • 原文地址:https://www.cnblogs.com/samo/p/6781007.html
Copyright © 2011-2022 走看看