599.minimum-index-sum-of-two-lists

本文介绍了一个算法问题,即如何找到两个人列表中共同喜爱的餐厅,并且这些餐厅在两个列表中的索引之和最小。通过使用字典存储一个列表的数据,可以高效地解决此问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

假设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. 两个列表的长度范围都在 [1, 1000]内。
  2. 两个列表中的字符串的长度将在[1,30]的范围内。
  3. 下标从0开始,到列表的长度减1。
  4. 两个列表都没有重复的元素。

解题思路:

    将一个数组存入一个字典中,然后根据另外一个数组中的餐厅的名字来查找第一个数组中是否含有这个元素。

解题代码:

        minsum=float("inf")
        ans=[]
        d={}
        for i,name in enumerate(list2):
            d[name]=i
        for i,name in enumerate(list1):
            idsum=i+d.get(name,float("inf"))
            if idsum==minsum:
                ans.append(name)
            if idsum<minsum:
                ans=[name]
                minsum=idsum
        return ans

Here's an implementation of the program in C: ```c #include <stdio.h> #include <stdlib.h> #include <pthread.h> #include <math.h> // Global variables for storing statistical values double average = 0.0; int minimum = 0; int maximum = 0; double median = 0.0; double std_dev = 0.0; // Struct for passing arguments to worker threads typedef struct { int* numbers; int count; } thread_args; // Worker thread for calculating average void* calculate_average(void* args) { thread_args* targs = (thread_args*) args; int* numbers = targs->numbers; int count = targs->count; double sum = 0.0; for (int i = 0; i < count; i++) { sum += numbers[i]; } average = sum / count; pthread_exit(NULL); } // Worker thread for calculating minimum void* calculate_minimum(void* args) { thread_args* targs = (thread_args*) args; int* numbers = targs->numbers; int count = targs->count; minimum = numbers[0]; for (int i = 1; i < count; i++) { if (numbers[i] < minimum) { minimum = numbers[i]; } } pthread_exit(NULL); } // Worker thread for calculating maximum void* calculate_maximum(void* args) { thread_args* targs = (thread_args*) args; int* numbers = targs->numbers; int count = targs->count; maximum = numbers[0]; for (int i = 1; i < count; i++) { if (numbers[i] > maximum) { maximum = numbers[i]; } } pthread_exit(NULL); } // Worker thread for calculating median void* calculate_median(void* args) { thread_args* targs = (thread_args*) args; int* numbers = targs->numbers; int count = targs->count; int* sorted_numbers = malloc(count * sizeof(int)); for (int i = 0; i < count; i++) { sorted_numbers[i] = numbers[i]; } for (int i = 0; i < count - 1; i++) { for (int j = i + 1; j < count; j++) { if (sorted_numbers[i] > sorted_numbers[j]) { int temp = sorted_numbers[i]; sorted_numbers[i] = sorted_numbers[j]; sorted_numbers[j] = temp; } } } if (count % 2 == 0) { median = (sorted_numbers[count / 2 - 1] + sorted_numbers[count / 2]) / 2.0; } else { median = sorted_numbers[count / 2]; } free(sorted_numbers); pthread_exit(NULL); } // Worker thread for calculating standard deviation void* calculate_std_dev(void* args) { thread_args* targs = (thread_args*) args; int* numbers = targs->numbers; int count = targs->count; double sum = 0.0; for (int i = 0; i < count; i++) { sum += pow(numbers[i] - average, 2); } std_dev = sqrt(sum / count); pthread_exit(NULL); } int main(int argc, char* argv[]) { // Parse command line arguments if (argc < 2) { printf("Usage: %s <number1> <number2> ... <numberN>\n", argv[0]); return 1; } int count = argc - 1; int* numbers = malloc(count * sizeof(int)); for (int i = 0; i < count; i++) { numbers[i] = atoi(argv[i + 1]); } // Create worker threads pthread_t threads[5]; thread_args targs = {numbers, count}; pthread_create(&threads[0], NULL, calculate_average, &targs); pthread_create(&threads[1], NULL, calculate_minimum, &targs); pthread_create(&threads[2], NULL, calculate_maximum, &targs); pthread_create(&threads[3], NULL, calculate_median, &targs); pthread_create(&threads[4], NULL, calculate_std_dev, &targs); // Wait for worker threads to complete for (int i = 0; i < 5; i++) { pthread_join(threads[i], NULL); } // Print results printf("The average value is %.2f\n", average); printf("The minimum value is %d\n", minimum); printf("The maximum value is %d\n", maximum); printf("The median value is %.2f\n", median); printf("The standard deviation is %.2f\n", std_dev); // Clean up free(numbers); return 0; } ``` The program takes a list of numbers as command line arguments, creates five worker threads to calculate statistical values, and then outputs the results once the worker threads have completed their calculations. Note that the median calculation uses a simple sorting algorithm to sort the list of numbers first. This may not be efficient for very large lists of numbers, but it works well enough for small lists. Also note that the standard deviation calculation uses the formula for sample standard deviation, which divides by N-1 instead of N to correct for bias.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值