美文网首页
每日温度

每日温度

作者: 二进制的二哈 | 来源:发表于2019-12-31 16:18 被阅读0次

    题目来源:力扣(LeetCode)
    链接:https://leetcode-cn.com/problems/daily-temperatures

    根据每日 气温 列表,请重新生成一个列表,对应位置的输入是你需要再等待多久温度才会升高超过该日的天数。如果之后都不会升高,请在该位置用 0 来代替。

    例如,给定一个列表 temperatures = [73, 74, 75, 71, 69, 72, 76, 73],你的输出应该是 [1, 1, 4, 2, 1, 1, 0, 0]。

    提示:气温 列表长度的范围是 [1, 30000]。每个气温的值的均为华氏度,都是在 [30, 100] 范围内的整数。

    动态规划解法(从后往前遍历):

    class Solution {
        public int[] dailyTemperatures(int[] T) {
            int len = T.length;
            int[] dp = new int[len];
            dp[len-1] = 0;
            for(int i=len-2;i>=0;i--){
                if(T[i] < T[i+1]){
                    dp[i] = 1;
                }else{
                    int tmp = dp[i+1] + i + 1;
                    while(T[tmp] <= T[i] && tmp < len){
                        if(dp[tmp] == 0){
                            break;
                        }
                        tmp = dp[tmp] + tmp;
                    }
                    if(tmp >= len){
                        dp[i] = 0;
                    }else if(T[tmp] > T[i]){
                        dp[i] = tmp - i;
                    }else if(T[tmp] <= T[i]){
                        dp[i] = 0;
                    }
                }
            }
            return dp;
        }
    }
    

    相关文章

      网友评论

          本文标题:每日温度

          本文链接:https://www.haomeiwen.com/subject/vqtioctx.html