`
blue2048
  • 浏览: 185806 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

[leetcode]candy-java

阅读更多

两次遍历,第一遍将大于等于序列的糖果分好,第二遍反向遍历,将小于序列的糖果分好

需要注意两点

1. 等于的情况,后一个孩子的糖果为1

2. 反向遍历的时候,到已经分了糖果的边界孩子时,需要判断,反向自增的糖果和此孩子之前分的糖果哪个大,取大值

 

public class Solution {
   public int candy(int[] ratings) {
        if(ratings == null || ratings.length == 0){
            return 0;
        }
        int count = 0;
        Integer[] counter = new Integer[ratings.length];
        counter[0]=1;
        for(int i=1; i<ratings.length; i++){
            Integer pre =ratings[i-1];
            int num = ratings[i];
            if(num>pre){
                if(counter[i-1] == null){
                    counter[i]=2;
                }else {
                    counter[i]=counter[i-1]+1;
                }
            }else if(num == pre){
                counter[i] = 1;
            }
        }
        Integer firstNullIndex = null;
        for(int i=ratings.length-1; i>=0; i--){
            if(counter[i] == null && firstNullIndex==null){
                counter[i]=1;
                firstNullIndex = i;
            }else if(counter[i]==null && firstNullIndex!=null){
                counter[i]=counter[i+1]+1;
            }else if(counter[i] != null && firstNullIndex!=null){
                firstNullIndex = null;
                counter[i]=((counter[i+1]+1)>counter[i])?counter[i+1]+1:counter[i];
            }
        }
     
        for(Integer c : counter){
            if(c != null){
                count += c;
            }
        }
        return count;
    }
}

 

分享到:
评论

相关推荐

    java-leetcode题解之Candy.java

    在LeetCode网站上,有许多编程题目供程序员练习和提升技能。其中,“Candy”是其中一个较为经典的算法题目。此题要求解决如何根据孩子的评分以最少量的糖果分配给孩子们的问题。具体规则是孩子们根据评分排成一排,...

    Leetcode题目+解析+思路+答案.pdf

    - **Candy**:分糖果,确保每个孩子至少得到一块糖,尽可能公平。 - **Word Break**:判断一个字符串是否可以拆分为一个词汇表中的单词序列。 7. **链表(Linked List)**: - **Linked List Cycle**:检测链表...

    Candy_leetcode:刷leetcode的代码汇总

    本资源"Candy_leetcode"是一个Java开发者在刷LeetCode过程中积累的代码集合,它涵盖了多种算法和数据结构的应用,对于学习和提升Java编程技能具有极高的价值。 1. **Java基础与进阶** Java作为一款强大的面向对象...

    leetcode c++程序

    11. LeetCode题目案例:文档中提到了一些特定的LeetCode题目案例,如SetMatrixZeroes、GasStation、Candy、SingleNumber等。这些案例覆盖了数组、单链表、字符串等数据结构的多种操作,体现了各种算法应用场景。 12...

    java7源码-CS:备战秋招:计算机基础知识整理

    (C语言是我初恋:candy: ) 目前有的: Java 操作系统 计网 JVM leetcode 计算机基础 Android 设计模式 数据库 工具 面筋 ​ :laptop: :cloud: :ogre: :lion: :globe_showing_Asia-Australia: :robot: :deer: :memo:...

Global site tag (gtag.js) - Google Analytics