【Leetcode】318. Maximum Product of Word Lengths

题目地址:

https://leetcode.com/problems/maximum-product-of-word-lengths/

给定一个字符串数组,返回最大的不share相同字符的两个字符串长度的乘积。答案不存在则返回 0 0 0。题目保证字符串只含小写字母。

本质上是要加快判断两个字符串是否有相同字母。思路是利用位运算,用一个 32 32 32位整数来记录一个字符串里是否含有某个字母。如果含有某个字母,那就在那一位记为 1 1 1,否则记为 0 0 0。代码如下:

public class Solution {
    public int maxProduct(String[] words) {
        int[] bits = new int[words.length];
        for (int i = 0; i < words.length; i++) {
            String word = words[i];
            for (int j = 0; j < word.length(); j++) {
                bits[i] |= 1 << (word.charAt(j) - 'a');
            }
        }
        
        int res = 0;
        for (int i = 0; i < words.length; i++) {
            for (int j = 0; j < words.length; j++) {
            	// 如果&起来等于0,说明没有相同字符,则更新答案
                if ((bits[i] & bits[j]) == 0) {
                    res = Math.max(res, words[i].length() * words[j].length());
                }
            }
        }
        
        return res;
    }
}

时间复杂度 O ( n 2 + n l ) O(n^2+nl) O(n2+nl),空间 O ( n ) O(n) O(n)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值