LeetCode 599. 两个列表的最小索引总和(C、C++、python)

假设Andy和Doris想在晚餐时选择一家餐厅,并且他们都有一个表示最喜爱餐厅的列表,每个餐厅的名字用字符串表示。

你需要帮助他们用最少的索引和找出他们共同喜爱的餐厅。 如果答案不止一个,则输出所有答案并且不考虑顺序。 你可以假设总是存在一个答案。

示例 1:

输入:
["Shogun", "Tapioca Express", "Burger King", "KFC"]
["Piatti", "The Grill at Torrey Pines", "Hungry Hunter Steakhouse", "Shogun"]
输出: ["Shogun"]
解释: 他们唯一共同喜爱的餐厅是“Shogun”。

示例 2:

输入:
["Shogun", "Tapioca Express", "Burger King", "KFC"]
["KFC", "Shogun", "Burger King"]
输出: ["Shogun"]
解释: 他们共同喜爱且具有最小索引和的餐厅是“Shogun”,它有最小的索引和1(0+1)。

提示:

两个列表的长度范围都在 [1, 1000]内。

两个列表中的字符串的长度将在[1,30]的范围内。

下标从0开始,到列表的长度减1。

两个列表都没有重复的元素。

C

/**
 * Return an array of size *returnSize.
 * Note: The returned array must be malloced, assume caller calls free().
 */
char** findRestaurant(char** list1, int list1Size, char** list2, int list2Size, int* returnSize) 
{
    int m=list1Size;
    int n=list2Size;
    int min=m

C++

class Solution {
public:
    vector findRestaurant(vector& list1, vector& list2) 
    {
        vector res;
        int m=list1.size();
        int n=list2.size();
        map tmp;
        for(int i=0;i0)
            {
                int sum=i+tmp[list2[i]]-1;
                if(sum

python

class Solution:
    def findRestaurant(self, list1, list2):
        """
        :type list1: List[str]
        :type list2: List[str]
        :rtype: List[str]
        """
        res=[]
        m=len(list1)
        n=len(list2)
        length=m+n
        for i in range(m):
            if list1[i] in list2:
                ss=i+list2.index(list1[i])
                if ss

 

你可能感兴趣的:(LeetCode)