贝壳笔试:多米诺骨牌-越界一直没处理出来

import java.util.*;
public class 多米诺骨牌 {
    static class Node implements Comparable{
        private int x;
        private int h;
        private int cnt;
        private int ans;
        private int max;
        public Node(int x, int h, int cnt, int ans, int max) {
            this.x = x;
            this.h = h;
            this.cnt = cnt;
            this.ans = ans;
            this.max = max;
        } 
        @Override]
         public int compareTo(Node node) {
            return this.x - node.x;
        }
    }
    static class cmpCnt implements Comparator {
    @Override]
     public int compare(Node o1, Node o2) {
            return  o1.cnt - o2.cnt;
        }
    }
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n = Integer.parseInt(in.nextLine());
        List list = new ArrayList();
        for (int i = 0; i < n; i++) {
            String[] strs = in.nextLine().split(" ");
            int x = Integer.parseInt(strs[0]);
            int h = Integer.parseInt(strs[1]);
            int cnt = i;
            int ans = 1;
            int max = x + (h - 1);
            Node temp = new Node(x, h, cnt, ans, max);
            list.add(temp);
        }
        //处理越界用的Node
        Node temp = new Node(0, 0, 0, 0, 0);
        list.add(temp);
        Collections.sort(list);
        for (int i = n - 1; i >= 1; i--) {
            int j = i + 1;
            int max = list.get(i).max;
            while (j <= n && list.get(j).x <= max){
                list.get(i).ans += list.get(j).ans;
                max = Math.max(max, list.get(j).max);
                j += list.get(j).ans;
            }
            list.get(i).max = max;
        }
        Collections.sort(list,new cmpCnt());
        System.out.println();
        for (int i = 1; i < n; i++) {
            System.out.print(list.get(i).ans + " ");
        }
        System.out.print(list.get(n).ans);
    }
}
没有多余的测试用例,也不知道对错.
考完了照着大佬的改了下。
#贝壳找房#
全部评论
百度一下 56E Codeforce E Domino Principle有答案
点赞 回复 分享
发布于 2018-09-05 19:26

相关推荐

04-16 10:27
已编辑
美团_Saas_后端开发
今天周一休息,突发奇想写一篇阶段总结。如题,我已经去了一个和Java彻底毫无关联的行业。曾经我以为自己能在计算机行业发光发热,拿到美团offer那会感觉自己天都亮了。没想到刚入行一年多就当了逃兵。从最开始的热爱到现在一看到代码就厌恶,不知道自己经历了什么。所以我去干什么了?答案是:在成都当了租房销售。上班那会压力大了就念叨着去干租房中介,但是一直下不去这个决心,想着自己学了四年多的计算机知识,终究还是不甘心。终于在某一天准备八股文的时候,看着无数篇和工作内容关系不大的理论知识,那一刻下定决心,决定尝试一下销售行业,也算是给自己一个交代。后面阴差阳错的投了成都自如去当租房管家,没想到面试很顺利,在当天一百多个面试的人里面,我成为了为数不多通过的几个幸运儿之一。目前已经培训通过,正式入职,也开了单,有压力但是每天过得很开心,真心喜欢那种和人交流的感觉,哪怕是最后没有选择找我租房。说这些也是想告诉那些大三,大四正在找Java实习而焦虑的同学:你们现在还年轻,选择很多,容错率也很高,可以尽情去尝试自己喜欢的行业和工作。不用因为某一次的面试没通过或者简历石沉大海而焦虑,更不用因为身边人都在挤编程的独木桥就强迫自己跟风。也算是自己的碎碎念吧,也希望自己能在新的领域取得一点小成就。也祝牛油工作顺利!
沉淀小子:干啥都不丢人啊,生存是必须要的,销售很考验一个人综合素质能力的,好的销售人脉和资源可不比写字楼的白领差啊
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务