牛客模拟笔试-代码题

牛客模拟笔试
第一题
import java.util.*;


public class Solution {
    public static void main(String[] args) {
        var res = new Solution().findMaxButtons(new int[]{2,2,2});
        System.out.println(res);
    }
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param buttons int整型一维数组 
     * @return long长整型
     */
    public long findMaxButtons (int[] buttons) {
        if (buttons == null) {
            return 0;
        }
        long res = 0;
        for (int i = 0; i < buttons.length; ++i) {
            long ai = buttons[i] + (long)(buttons[i] - 1) * i;
            res += ai;
        }
        return res;
    }
}

第二题
import java.util.*;
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int len = sc.nextInt();
        String line = sc.next();
        char[] chs = line.toCharArray();
        int[] a = new int[len];
        int[] b = new int[len];
        if (chs[0] == '0') {
            a[0] = 1;
        }
        for (int i = 1; i < len; ++i) {
            a[i] = chs[i] == '0' ? a[i-1] + 1 : a[i-1];
        }
        if (chs[len-1] == '1') {
            b[len-1] = 1;
        }
        for (int i = len - 2; i >= 0; --i) {
            b[i] = chs[i] == '1' ? b[i+1] + 1 : b[i+1];
        }   
        int res = Math.min(a[len-1], b[0]);
        for (int i = 1; i < len; ++i) {
            if (a[i-1] + b[i] < res) {
                res = a[i-1] + b[i];
            }
        }
        System.out.println(res);
    }
}

第三题
import java.util.*;
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        String s1 = sc.next();
        String s2 = sc.next();
        String s3 = sc.next();
        Player[] plays = new Player[3];
        plays[0] = new Player("xiaoming", count(s1, n));
        plays[1] = new Player("xiaowang", count(s2, n));
        plays[2] = new Player("xiaoli", count(s3, n));
        Arrays.sort(plays, (o1, o2)->{
            return o1.value - o2.value;
        });
        if (plays[1].value == plays[2].value) {
            System.out.println("draw");
        } else {
            System.out.println(plays[2].name);
        }
    }
    
    static class Player {
        String name;
        int value;
        Player(String name, int value) {
            this.name = name;
            this.value = value;
        }
    }
    
    private static int count(String s, int n) {
        int[] cnt = new int[128];
        char[] chs = s.toCharArray();
        for (int i = 0; i < chs.length; ++i) {
            cnt[chs[i]]++;
        }
        int maxV = 0;
        for (int i = 0; i < 128; ++i) {
            if (cnt[i] > maxV) {
                maxV = cnt[i];
            }
        }
        return maxV + n >= s.length() ? s.length() : maxV + n;
    }
}


#笔试题目#
全部评论
想请教一下 第二题的23-25行怎么理解呀
点赞 回复 分享
发布于 2021-03-18 23:19
第一题我就一个公式,用例都能过,ac0😤
点赞 回复 分享
发布于 2021-03-18 21:08
第二题最后处理太妙了😂吗,我好不习惯逆向处理数据
点赞 回复 分享
发布于 2021-03-18 21:05
全部ac了吗
点赞 回复 分享
发布于 2021-03-18 20:58

相关推荐

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

创作者周榜

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