程序员最近都爱上了这个网站  程序员们快来瞅瞅吧!  it98k网:it98k.com

本站消息

站长简介/公众号

  出租广告位,需要合作请联系站长

+关注
已关注

分类  

暂无分类

标签  

暂无标签

日期归档  

2023-05(2)

ACM_ICPC_Team

发布于2020-01-01 11:48     阅读(756)     评论(0)     点赞(29)     收藏(3)


题目:

There are a number of people who will be attending ACM-ICPC World Finals. Each of them may be well versed in a number of topics. Given a list of topics known by each attendee, you must determine the maximum number of topics a 2-person team can know. Also find out how many ways a team can be formed to know that many topics. Lists will be in the form of bit strings, where each string represents an attendee and each position in that string represents a field of knowledge, 1 if its a known field or 0 if not.
附上链接:ACM_ICPC_Team

初步想法

这题我初见想到的就是简单的三次循环遍历

for i in range(n):
    for j in range(i + 1, n):
        for k in range(m):
            # 进行判断及计数等操作

虽然功能上一定可以实现,但是时间复杂度达到了O(n^2 * m)的地步,这显然不能满足要求

进阶解决

为了避免嵌套循环大量消耗时间,我改用itertools库中的combinations(list, num)函数,该函数可以根据给定的参数完成对给定列表的全组合,即数学上的C(num, len(list)),结果返回一个包含全部全组合的元组,于是最外层的两个循环备修改为如下代码:
for i in itertools.combinations(topic, 2):
即将列表topic中的每两个元素分别组合形成一个新元组,并对其进行遍历,就实现了之前的那两个外层循环同样的功能

而后对第三个循环的思考中我发现:
题目中已经给定的主函数中,传入的变量是一个元素为字符串形式的列表,而不是数值形式
这就又为我们解题提供了方便,将两者进行或操作并判断1的个数就简化为了下面这一句话:
count = str(bin(int(i[0], 2) | int(i[1], 2))).count('1')
其中int(***, 2)中的第二个参数2表示将字符串转换为二进制数字

最终程序

简化了上面的问题,这个题目也就没有难点了,下面附上我最终通过的代码

def acmTeam(topic):
    combine = itertools.combinations(topic, 2)
    max_num = 0
    num = 1
    for i in combine:
        res = str(bin(int(i[0], 2) | int(i[1], 2)))
        count = res.count('1')
        if count > max_num:
            max_num = count
            num = 1
        elif count == max_num:
            num += 1
    return max_num, num


所属网站分类: 技术文章 > 博客

作者:我不喜欢上班

链接:https://www.pythonheidong.com/blog/article/196864/4481c27af9e147d301ad/

来源:python黑洞网

任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任

29 0
收藏该文
已收藏

评论内容:(最多支持255个字符)