美团笔试 九月二号 分享一下后三题

第五题,给出一列数两两凑对能凑出多少不同的对,没思路用优先队列瞎写居然过了,有人能证明最优解吗

import java.util.*;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        // 注意 hasNext 和 hasNextLine 的区别
        HashMap<Integer,Integer> map = new HashMap<>();
        int n = in.nextInt();
        in.nextLine();
        for(int i = 0;i < n;i++) {
            int t = in.nextInt();
            map.put(t,1 + map.getOrDefault(t,0));
        }
        int m = map.size();
        PriorityQueue<Integer> pq = new PriorityQueue<>(((o1, o2) -> (o2 - o1)));
        for(int e:map. values()){
            pq.offer(e);
        }
        int res = 0;

        while (!pq.isEmpty()){
            List<Integer> temp = new ArrayList<>();
            int cur = pq.poll();
            while (cur > 0 && !pq.isEmpty()){
                if(pq.size() == 1 && cur == 2) {
                    cur = 0;
                    res ++;
                    continue;
                }
                cur--;
                res++;
                int nxt = pq.poll() - 1;
                if(nxt > 0) temp.add(nxt);
                
            }
            if(pq.isEmpty() && cur >= 2) res ++;
            pq.addAll(temp);
        }
        System.out.println(res);


    }
}

第四题,给出n个数删除k个使得剩下的互相为倍数,动态规划

import java.util.Arrays;
import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        // 注意 hasNext 和 hasNextLine 的区别
        int n = in.nextInt(),k = in.nextInt();
        in.nextLine();
        int[] nums = new int[n];
        for(int i = 0;i < n;i++) {
            nums[i] = in.nextInt();
        }
        Arrays.sort(nums);
        int mod = 1000000007;
        int res = 0;
        int[][] f = new int[n][n - k];
        for(int i = n - 1;i >= 0;i--){
            f[i][0] = 1;
            for(int j = i + 1;j < n;j++){
                if(nums[j] % nums[i] == 0) {
                    for(int p = 1;p <n - k;p++){
                        f[i][p] = (f[i][p] + f[j][p - 1]) % mod;
                    }
                }
            }
            res = (res + f[i][n - k - 1]) % mod;
        }
        System.out.println(res);

    }
}

第三题:给n个数,每次把一个数除2或把第一个数乘2,求让第一个数成为最大的最少操作数

import java.util.PriorityQueue;
import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        // 注意 hasNext 和 hasNextLine 的区别
        int n = in.nextInt();
        in.nextLine();
        int first = in.nextInt();
        if(n == 1) {
            System.out.println(0);
            return;
        }
        PriorityQueue<Integer> pq = new PriorityQueue<>(((o1, o2) -> (o2 - o1)));
        for(int i = 1;i < n;i++) pq.offer(in.nextInt());
        int res = Integer.MAX_VALUE,cur = 0;
        while (cur < res){
            int p = pq.poll();
            res = Math.min(count(p,first) + cur,res);
            pq.offer(p / 2);
            cur++;
        }
        System.out.println(res);
    }
    public static int count(int t,int f){
        int res = 0;
        while (f < t){
            f *= 2;
            res ++;
        }
        return res;
    }
}

全部评论
第五题我直接输出n/2,ac了
3 回复 分享
发布于 2023-09-02 21:19 江西
同样是电专 ,为啥你如此优秀?
点赞 回复 分享
发布于 2023-09-02 21:24 陕西
校友牛!
点赞 回复 分享
发布于 2023-09-02 22:41 陕西
while循环里的内容该怎么理解呀?
点赞 回复 分享
发布于 2023-09-03 11:31 湖南
想问一下之前有刷到类似的题目吗?还是就是当场做出来的?
点赞 回复 分享
发布于 2023-09-03 16:43 英国

相关推荐

不愿透露姓名的神秘牛友
11-24 20:55
阿里国际 Java工程师 2.7k*16.0
程序员猪皮:没有超过3k的,不太好选。春招再看看
点赞 评论 收藏
分享
11-09 01:22
已编辑
东南大学 Java
高级特工穿山甲:羡慕,我秋招有家企业在茶馆组织线下面试,约我过去“喝茶详谈”😢结果我去了发现原来是人家喝茶我看着
点赞 评论 收藏
分享
ProMonkey2024:5个oc?厉害! 但是有一个小问题:谁问你了?😡我的意思是,谁在意?我告诉你,根本没人问你,在我们之中0人问了你,我把所有问你的人都请来 party 了,到场人数是0个人,誰问你了?WHO ASKED?谁问汝矣?誰があなたに聞きましたか?누가 물어봤어?我爬上了珠穆朗玛峰也没找到谁问你了,我刚刚潜入了世界上最大的射电望远镜也没开到那个问你的人的盒,在找到谁问你之前我连癌症的解药都发明了出来,我开了最大距离渲染也没找到谁问你了我活在这个被辐射蹂躏了多年的破碎世界的坟墓里目睹全球核战争把人类文明毁灭也没见到谁问你了(别的帖子偷来的,现学现卖😋)
点赞 评论 收藏
分享
评论
12
15
分享
牛客网
牛客企业服务