码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode 双周赛9 找出所有行中最小公共元素

时间:2019-09-22 21:34:02      阅读:1034      评论:0      收藏:0      [点我收藏+]

标签:solution   pre   style   stc   span   输出   ++   leetcode   记录   

给你一个矩阵 mat,其中每一行的元素都已经按 递增 顺序排好了。请你帮忙找出在所有这些行中 最小的公共元素。

如果矩阵中没有这样的公共元素,就请返回 -1

示例:

输入:mat = [[1,2,3,4,5],[2,4,5,8,10],[3,5,7,9,11],[1,3,5,7,9]]
输出:5

解法:

暴力解法  就是使用哈希记录每行 然后比较

代码

class Solution {
public:
unordered_map<int, int> umap[510];

int smallestCommonElement(vector<vector<int>>& mat) {
    if (mat.empty() || mat[0].empty()) return -1;
    for (int i = 0; i < mat.size(); i++)
    {
        for (int j = 0; j < mat[0].size(); j++) {
            umap[i][mat[i][j]]++;
        }
    }

    for (int j = 0; j < mat[0].size(); j++) {
        int find = 1;
        int findNum = mat[0][j];
        for (int i = 1; i < mat.size(); i++) {
            if (umap[i][findNum] == 0) {
                find = 0;
                break;
            }
        }
        if (find == 1)
        {
            return findNum;
        }
    }

    return -1;
}
    
};

 

leetcode 双周赛9 找出所有行中最小公共元素

标签:solution   pre   style   stc   span   输出   ++   leetcode   记录   

原文地址:https://www.cnblogs.com/itdef/p/11569177.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!