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;

        
    }
};
相关推荐
_深海凉_3 小时前
LeetCode热题100-寻找两个正序数组的中位数
算法·leetcode·职场和发展
踩坑记录3 小时前
leetcode hot100 寻找两个正序数组的中位数 hard 二分查找 双指针
leetcode
旖-旎3 小时前
深搜练习(电话号码字母组合)(3)
c++·算法·力扣·深度优先遍历
谭欣辰3 小时前
C++快速幂完整实战讲解
算法·决策树·机器学习
Mr_pyx4 小时前
【LeetHOT100】随机链表的复制——Java多解法详解
算法·深度优先
AIFarmer4 小时前
【无标题】
开发语言·c++·算法
AGV算法笔记4 小时前
CVPR 2025 最新感知算法解读:GaussianLSS 如何用 Gaussian Splatting 重构 BEV 表示?
算法·重构·自动驾驶·3d视觉·感知算法·多视角视觉
勤劳的进取家5 小时前
数据链路层基础
网络·学习·算法
Advancer-5 小时前
第二次蓝桥杯总结(上)
java·算法·职场和发展·蓝桥杯
ん贤6 小时前
加密算法(对称、非对称、哈希、签名...)
算法·哈希算法