hulu笔试3.15 通过了2.8

1

// 本题为考试单行多行输入输出规范示例,无需提交,不计分。
import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int n = scanner.nextInt();
        int[] nums = new int[n];
        for (int i = 0; i < n; i++) {
            nums[i] = scanner.nextInt();
        }
        int res = fun(nums);
    }

    private static int fun(int[] nums) {
        int res = 0;
        for (int i = 0; i < nums.length; i++) {
            if (nums[i] == -1) {
                continue;
            }
            int left = i * 2 - 1, right = i * 2;
            boolean l = left >= nums.length || nums[left] == -1;
            boolean r = right >= nums.length || nums[right] == -1;
            if (l && r) {
                res ++;
            }
        }
        return res;
    }

}


2

// 本题为考试单行多行输入输出规范示例,无需提交,不计分。
import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int m = scanner.nextInt();
        int n = scanner.nextInt();
        scanner.nextLine();
        char[][] matrix = new char[m][n];
        for (int i = 0; i < m; i++) {
            String str = scanner.nextLine();
            for (int j = 0; j < n; j++) {
                matrix[i][j] = str.charAt(j);
            }
        }
        int a = scanner.nextInt();
        int b = scanner.nextInt();
        scanner.nextLine();
        char[][] image = new char[a][b];
        for (int i = 0; i < a; i++) {
            String str = scanner.nextLine();
            for (int j = 0; j < b; j++) {
                image[i][j] = str.charAt(j);
            }
        }
        int res = fun(matrix, image);
        System.out.println(res);
    }

    private static int fun(char[][] matrix, char[][] image) {
        int n = matrix.length;
        int m = matrix[0].length;
        int a = image.length;
        int b= image[0].length;
        int res = 0;
        for (int i = 0; i <= n - a; i++) {
            for (int j = 0; j <= m - b; j++) {
                if (isValid(matrix, image, i, j)) {
                    res ++;
                }
            }
        }
        return res;
    }

    private static boolean isValid(char[][] matrix, char[][] image, int i, int j) {
        int a = image.length;
        int b= image[0].length;
        for (int p = 0; p < a; p++) {
            for (int q = 0; q < b; q++) {
                if (matrix[i + p][j + q] != image[p][q]) {
                    return false;
                }
            }
        }
        return true;
    }

}


3

暴力O(N^2)只过了82%
// 本题为考试单行多行输入输出规范示例,无需提交,不计分。
import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int n = scanner.nextInt();
        int m = scanner.nextInt();
        long k = scanner.nextLong();
        long[] nums = new long[n];
        for (int i = 0; i < n; i++) {
            nums[i] = scanner.nextLong();
        }
        long res = fun1(nums, m, k);
        System.out.println(res);
    }

    private static long fun1(long[] nums, int m, long k) {
        int len = nums.length;
        long res = 0;
        for (int i = 0; i < len; i++) {
            long sum = 0;
            int negatives = 0;
            for (int j = i; j < len; j++) {
                sum += nums[j];
                // [i, j]
                if (nums[j] < 0) {
                    negatives ++;
                }
                if (negatives > m) {
                    break;
                }
                if (sum > k) {
                    continue;
                }
                res = Math.max(res, sum);
                if (res == k) {
                    return k;
                }
            }
        }
        return res;
    }
}
尝试将上面的复杂度降低为O(NlogN),测试用例通过了,不知道是否正确。参考 https://blog.csdn.net/u010900754/article/details/60457594
// 本题为考试单行多行输入输出规范示例,无需提交,不计分。
import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int n = scanner.nextInt();
        int m = scanner.nextInt();
        long k = scanner.nextLong();
        long[] nums = new long[n];
        for (int i = 0; i < n; i++) {
            nums[i] = scanner.nextLong();
        }
        long res = fun(nums, m, k);
        System.out.println(res);
    }

    /**
     * 计算负数个数不超过m,总收益不超过k的最大子数组和
     * @param nums
     * @param m
     * @param k
     * @return
     */
    private static long fun(long[] nums, int m, long k) {
        int len = nums.length;
        // [i] [0,i-1]之间的子数组和
        long[] preSum = new long[len + 1];
        for (int i = 0; i < nums.length; i++) {
            preSum[i + 1] = preSum[i] + nums[i];
        }
        long res = 0;
        TreeMap<Long, Integer> treeMap = new TreeMap<>();
        int l = 0, r = 0;
        int negatives = 0;
        treeMap.put(0L, 0);
        while (r < len){
            // 更新r的信息
            if (nums[r] < 0) {
                negatives ++;
            }
            treeMap.put(preSum[r + 1], r);
            while (negatives > m) {
                if (nums[l] < 0) {
                    negatives --;
                }
                if (treeMap.get(nums[l]) == l) {
                    treeMap.remove(nums[l]);
                }
                l ++;
            }
            // [l, r]中负数<=m
            Map.Entry<Long, Integer> entry = treeMap.ceilingEntry(preSum[r + 1] - k);
            res = Math.max(res, preSum[r + 1] - entry.getKey());
            r ++;
        }
        return res;
    }

}


#hulu笔试##笔经##hulu#
全部评论
牛啊,多谢分享,学习了
1 回复 分享
发布于 2022-03-16 11:36
这个成绩应该是可以进面试了吧?
1 回复 分享
发布于 2022-03-16 13:30
在哪里能看到得分啊?我当时都没看到
点赞 回复 分享
发布于 2022-03-17 17:42

相关推荐

服从性笔试吗,发这么多笔,现在还在发。
蟑螂恶霸zZ:傻 x 公司,发两次笔试,两次部门匹配挂,
投递金山WPS等公司10个岗位 >
点赞 评论 收藏
分享
沉淀一会:**圣经 1.同学你面试评价不错,概率很大,请耐心等待;2.你的排名比较靠前,不要担心,耐心等待;3.问题不大,正在审批,不要着急签其他公司,等等我们!4.预计9月中下旬,安心过节;5.下周会有结果,请耐心等待下;6.可能国庆节前后,一有结果我马上通知你;7.预计10月中旬,再坚持一下;8.正在走流程,就这两天了;9.同学,结果我也不知道,你如果查到了也告诉我一声;10.同学你出线不明朗,建议签其他公司保底!11.同学你找了哪些公司,我也在找工作。
点赞 评论 收藏
分享
工作基本定了,比较满意。这深度学习真是难搞啊,论文看不懂,代码看不懂,不会改,创新点???&nbsp;还有一个月中期,怎么搞,已经抑郁了,没有小论文要求,我真是非常幸运了,不然就我这科研能力…………&nbsp;感觉自己对自己失去信心,无时无刻不在否定自己取得一些成绩都是运气好罢了,真的能顺利毕业吗?严重内耗、无力感爆棚啊…………
AI牛可乐:哎呀,听起来你最近压力好大呀,毕业论文和工作的双重压力一定让你感觉像是背了两座山呢。深度学习确实挺复杂的,就像是要在一片迷雾中找到出路一样。但是,你已经很棒了,工作都定好了,这是很大的成就呢! 论文的事情,别太担心。每个人都有看不懂代码和论文的时候,这是正常的。至于创新点嘛,有时候灵感就像小猫一样,需要一点一点地哄出来的。你可以先试试把你看过的资料整理一下,说不定就能找到新的思路呢。 中期答辩前,你可以列个计划,一步一步来,把大问题分解成小问题,一点一点克服。记得,你不是一个人在战斗,你的导师、同学都是你的战友哦。 至于信心嘛,别否定自己,每个人都会有低谷的时候。你已经取得的成绩,都是你实力的体现。毕业不是问题,只要你不放弃,就一定能顺利走过去的。加油哦,我相信你可以的! 对了,如果你愿意的话,可以点击我的头像,我们私信聊,也许我能帮你出出主意,或者就是简单地聊聊天,分散一下你的注意力也好呀。🐮💪🌟
点赞 评论 收藏
分享
10 16 评论
分享
牛客网
牛客企业服务