微众银行笔试9.3 Java开发

第一题,HashSet

import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;

public class Main1 {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        int[] arr = new int[n];
        for (int i = 0; i < n; i++) {
            arr[i] = in.nextInt();
        }
        Set<Integer> cad = new HashSet<>();
        int count = 0;
        for (int i = 0; i < n; i++) {
            if (!cad.contains(arr[i])) {
                cad.add(arr[i]);
                count++;
            } else {
                break;
            }
        }
        System.out.println(count);
    }
}

第二题,主要思路是先将输入的数组排序,然后遍历数组,如果当前元素小于等于前一个元素,则将其增加到前一个元素加一的大小,并累加所需的橡皮泥数量。

import java.util.*;
public class Main2 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] a = new int[n];
        for (int i = 0; i < n; i++) {
            a[i] = sc.nextInt();
        }
        Arrays.sort(a);
        long ans = 0;
        for (int i = 1; i < n; i++) {
            if (a[i] <= a[i - 1]) {
                ans += a[i - 1] - a[i] + 1;
                a[i] = a[i - 1] + 1;
            }
        }
        System.out.println(ans);
    }
}

第三题,将问题转化为求解有多少个子区间的和等于 u/v * 子区间长度。然后,前缀和。

import java.util.Scanner;
import java.util.HashMap;

public class Main3 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int u = sc.nextInt();
        int v = sc.nextInt();
        int[] a = new int[n + 1];
        for (int i = 1; i <= n; i++) {
            a[i] = sc.nextInt();
        }
        long ans = 0;
        HashMap<Long, Integer> map = new HashMap<>();
        map.put(0L, 1);
        long sum = 0;
        for (int i = 1; i <= n; i++) {
            sum += a[i] * v - u;
            if (map.containsKey(sum)) {
                ans += map.get(sum);
                map.put(sum, map.get(sum) + 1);
            } else {
                map.put(sum, 1);
            }
        }
        System.out.println(ans);
    }
}

全部评论
第三题直接暴力两层循环a出来80%
1 回复 分享
发布于 2023-09-04 09:35 山东
互联网金融行业考虑不,招联金融,base深圳, 招商银行和联通组建 国内消费金融top 有开发 产品 运营岗https://www.nowcoder.com/share/jump/2960110952044427369
1 回复 分享
发布于 2023-09-06 12:40 广东
我第二题和你写的一样,为什么只过了27%?我的ans是int类型,你的是long类型,别的都一样
点赞 回复 分享
发布于 2023-09-03 22:42 北京
你好,sum+=a【i】✘v-u这一步有一点看不懂,是怎么转化的呢
点赞 回复 分享
发布于 2023-09-03 23:08 重庆
这第一题,这样做不合适吧?
点赞 回复 分享
发布于 2023-09-04 16:23 陕西
您好,有兴趣投递中金所技术公司吗,投递连接https://neitui.italent.cn/cffexit/sharejobs?shareId=cf9ba558-9b4e-4f46-a803-a01c64bd37c8,具体可以看我主页哦
点赞 回复 分享
发布于 2023-09-05 07:22 上海

相关推荐

服从性笔试吗,发这么多笔,现在还在发。
蟑螂恶霸zZ:傻 x 公司,发两次笔试,两次部门匹配挂,
投递金山WPS等公司10个岗位 >
点赞 评论 收藏
分享
10-24 11:10
山西大学 Java
若梦难了:哥们,面试挂是很正常的。我大中厂终面挂,加起来快10次了,继续努力吧。
点赞 评论 收藏
分享
球球别再泡了:坏,我单9要了14
点赞 评论 收藏
分享
14 20 评论
分享
牛客网
牛客企业服务