zoukankan      html  css  js  c++  java
  • LeetCode-318 Maximum Product of Word Lengths

    题目描述

    Given a string array words, find the maximum value of length(word[i]) * length(word[j]) where the two words do not share common letters. You may assume that each word will contain only lower case letters. If no such two words exist, return 0.

    题目大意

    给定一组字符串,要求求出两个字符串的长度乘积最大的(要求两个字符串中不包含相同的字母)。

    (PS:字符串中只有小写字母)

    示例

    E1

    Input: ["abcw","baz","foo","bar","xtfn","abcdef"]
    Output: 16
    Explanation: The two words can be "abcw", "xtfn".

    E2

    Input: ["a","ab","abc","d","cd","bcd","abcd"]
    Output: 4 
    Explanation: The two words can be "ab", "cd".

    解题思路

    用数组保存该字符串的字节转码(例如:abc = ’111‘,abd = ’1011‘,cd = ’1100‘),依次访问之前的字符转码,如果之间不存在共有的字母,则计算两个字母的长度乘积。

    复杂度分析

    时间复杂度:O(N2)

    空间复杂度:O(N)

    代码

    class Solution {
    public:
        int maxProduct(vector<string>& words) {
            vector<int> bit(words.size());
            int res = 0;
            
            for(int i = 0; i < words.size(); ++i) {
                // 将当前字符串的转码保存记录到数组中
                for(char c : words[i])
                    bit[i] |= 1 << (c - 'a');
                // 访问当前字符串之前的所有转码
                for(int j = 0; j < i; ++j) {
                    // 如果两个字符串之间不存在共有字母,则保存更大的长度乘积
                    if(!(bit[j] & bit[i]))
                        res = max(res, (int)(words[i].length() * words[j].length()));
                }
            }
            
            return res;
        }
    };
  • 相关阅读:
    Python使用Django创建第一个项目
    如何使用RobotFramework编写好的测试用例
    接口测试 总结(什么是接口测试)
    APP接口测试
    Django基础五之中间件
    Django基础五之django模型层(二)多表操作
    Django基础五之django模型层(一)单表操作
    Django基础四之模板系统
    Django基础三之视图函数
    DJANGO2--url路由
  • 原文地址:https://www.cnblogs.com/heyn1/p/11176455.html
Copyright © 2011-2022 走看看