1733. 需要教语言的最少人数

#哈希表 #贪心算法

https://leetcode.cn/problems/minimum-number-of-people-to-teach?envType=daily-question&envId=2025-09-10

题目:在一个由 m 个用户组成的社交网络里,我们获取到一些用户之间的好友关系。两个用户之间可以相互沟通的条件是他们都掌握同一门语言。

给你一个整数 n ,数组 languages 和数组 friendships ,它们的含义如下:

  • 总共有 n 种语言,编号从 1n
  • languages[i] 是第 i 位用户掌握的语言集合。
  • friendships[i] = [u​​​​​​i​​​, v​​​​​​i] 表示 u​​​​ivi 为好友关系。

你可以选择 一门 语言并教会一些用户,使得所有好友之间都可以相互沟通。请返回你 最少 需要教会多少名用户。

请注意,好友关系没有传递性,也就是说如果 xy 是好友,且 yz 是好友, xz 不一定是好友。


可以注意到,对于已经可以沟通的好友,我们不需要考虑,故而首先应当确定无法进行沟通的用户对。

cpp 复制代码
unordered_set<int>cncon;
for(auto friendship:friendships){
    unordered_set<int>st;
    bool conm=false;
    for(auto lan:languages[friendship[0]-1]){
        st.insert(lan);
    }
    for(auto lan:languages[friendship[1]-1]){
        if(st.find(lan)!=st.end()){
            conm=true;
            break;
        }
    }
    if(conm=false){
        cncon.insert([friendship[0]-1]);
        cncon.insert([friendship[1]-1]);
    }
    
}

找到所有无法沟通的用户之后,只需要再确定出掌握人数最多的语言即可。无法沟通的用户总人数减去掌握人数最多的语言人数,即为所求答案。

全部代码:

cpp 复制代码
class Solution {
public:
    int minimumTeachings(int n, vector<vector<int>>& languages, vector<vector<int>>& friendships) {
        //存储不能相互沟通的好友
        unordered_set<int>cncon;
        for(auto friendship:friendships){
            unordered_map<int,int>mp;
            bool conm=false;
            for(int lan:languages[friendship[0]-1]){
                mp[lan]=1;
            }
            for(int lan:languages[friendship[1]-1]){
                if(mp[lan]==1){
                    conm=true;
                    break;
                }
            }
            if(!conm){
                cncon.insert(friendship[0]-1);
                cncon.insert(friendship[1]-1);
            }
        }
        int max_cnt=0;
        //统计无法沟通的人中,每一种语言掌握的人数
        vector<int>cnt(n+1,0);
        for(auto friendship:cncon){
            for(int lan:languages[friendship]){
                cnt[lan]++;
                max_cnt=max(max_cnt,cnt[lan]);
            }
        }
        return cncon.size()-max_cnt;

        
    }
};
相关推荐
春日见1 天前
端到端自动驾驶综述
linux·人工智能·算法·机器学习·自动驾驶
Book思议-1 天前
【数据结构实战】单向循环单链表判别条件理解
c语言·数据结构·算法
逆境不可逃1 天前
【后端新手谈 04】Spring 依赖注入所有方式 + 构造器注入成官方推荐的原因
java·开发语言·spring boot·后端·算法·spring·注入方式
森林里的程序猿猿1 天前
垃圾收集器ParNew&CMS与底层标记三色标记算法
java·jvm·算法
进击的小头1 天前
第12篇:开环系统伯德图设计控制器
python·算法
weixin_458872611 天前
东华复试OJ二刷复盘13
数据结构·算法
TechPioneer_lp1 天前
腾讯客户端开发岗位 LeetCode 高频题汇总(2026版)
算法·leetcode·面试·求职招聘·笔试·腾讯校招·leetcode高频题
夏日听雨眠1 天前
数据结构1
数据结构·算法
jing-ya1 天前
day 55 图论part7
java·数据结构·算法·图论
我爱我家8821 天前
亚洲艺术电影节携澳门文化亮相深圳
人工智能·物联网·算法·区块链·爬山算法