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;

        
    }
};
相关推荐
GuWenyue8 分钟前
传统Agent工具两大痛点!300行代码落地MCP跨语言工具,彻底解耦LLM与工具
前端·人工智能·算法
我叫洋洋1 小时前
C ++ [ hello world ]
c语言·c++·算法
奋发向前wcx3 小时前
y1,y2总复习笔记5 2026.7.19
数据结构·笔记·算法
战族狼魂6 小时前
高频面试题精选:分治与AI Agent架构
人工智能·算法·大模型·大语言模型
李剑一6 小时前
你用过网易的将军令嘛?它底层实现账号保护的原理相当简单粗暴
算法
Scott9999HH6 小时前
告别流量波动玄学!从法拉第电磁定律到底层 C/C++ 流量累积算法,深度解密工业级电磁流量计选型与开发
c语言·c++·算法
中达瑞和-高光谱·多光谱7 小时前
1nm到8nm光谱分辨率,你的应用该选哪款光谱相机?
算法·高光谱·高光谱相机
香辣牛肉饭7 小时前
【算法】动态规划 最长公共子序列(LCS)
经验分享·笔记·算法·动态规划
旖-旎8 小时前
LeetCode 279:完全平方数(完全背包)—— 题解
c++·算法·leetcode·动态规划·背包问题