给定长度为N的数字字符串S ,任务是找到S的最长子字符串的长度,其中每个元素出现偶数次。
例子:
Input: S = “324425”
Output: 4
Explanation: Two substrings consisting of even frequent elements only are “44” and “2442”. Since “2442” is the longer of the two, print 4 as the required answer.
Input: S = “223015150”
Output: 6
Explanation: Three substrings consisting of even frequent elements only are “22”, “1515” and “015150”. Since “015150” is the longest among the three, print 4 as the required answer.
朴素的方法:最简单的方法是从给定的字符串生成所有可能的偶数长度的子字符串,对于每个子字符串,检查它是否只包含偶数频率的字符。打印所有此类子字符串中最长的长度。
时间复杂度: O(N 3 )
辅助空间: O(N)
高效方法:为了优化上述方法,想法是使用位掩码。请按照以下步骤解决问题:
- 从左到右遍历字符串。
- 在遍历时,使用一个位掩码变量,比如mask ,来跟踪从索引 0 到当前索引的每个元素的出现,无论是偶数还是奇数。第i(0≤I≤9)在屏蔽位是0,如果位,如果它已经发生了奇数次我已经发生的次数偶数直到当前索引,和1。
- 使用变量val来存储当前索引处的数字值。
- 要更新val的出现,请使用1 << val对掩码进行按位异或。
- 使用哈希表ind来跟踪每个位掩码的索引。
- 更新当前索引处的掩码值后,检查它是否存在于ind 中:
- 如果掩码的值已经存在于ind 中,则意味着从索引ind[mask] + 1到当前索引的每个元素出现偶数次。因此,如果该段从索引ind[mask] + 1到当前索引的长度大于答案,则更新答案。
- 否则,将当前索引的值赋给ind[mask] 。
- 最后,完成上述步骤后,打印所需子串的长度。
下面是上述方法的实现:
C++
// C++ program for the above approach
#include
using namespace std;
// Function to find length of the
// longest substring with each element
// occurring even number of times
int lenOfLongestReqSubstr(string s, int N)
{
// Initialize unordered_map
unordered_map ind;
int mask = 0;
ind[0] = -1;
// Stores the length of the
// longest required substring
int ans = 0;
// Traverse the string
for (int i = 0; i < N; i++) {
// Stores the value of the
// digit present at current index
int val = s[i] - '0';
// Bitwise XOR of the mask with
// 1 left-shifted by val
mask ^= (1 << val);
// Check if the value of mask is
// already present in ind or not
if (ind.find(mask) != ind.end()) {
// Update the final answer
ans = max(ans, i - ind[mask]);
}
// Otherwise
else
ind[mask] = i;
}
// Return the answer
return ans;
}
// Driver Code
int main()
{
// Given string
string s = "223015150";
// Length of the given string
int N = s.length();
// Function Call
cout << lenOfLongestReqSubstr(s, N);
return 0;
}
Java
// Java program for the
// above approach
import java.util.*;
class GFG{
// Function to find length of the
// longest subString with each element
// occurring even number of times
static int lenOfLongestReqSubstr(String s,
int N)
{
// Initialize unordered_map
HashMap ind =
new HashMap<>();
int mask = 0;
ind.put(0, -1);
// Stores the length of the
// longest required subString
int ans = 0;
// Traverse the String
for (int i = 0; i < N; i++)
{
// Stores the value of the
// digit present at current
// index
int val = s.charAt(i) - '0';
// Bitwise XOR of the mask
// with 1 left-shifted by val
mask ^= (1 << val);
// Check if the value of mask is
// already present in ind or not
if (ind.containsKey(mask))
{
// Update the final answer
ans = Math.max(ans,
i - ind.get(mask));
}
// Otherwise
else
ind.put(mask, i);
}
// Return the answer
return ans;
}
// Driver Code
public static void main(String[] args)
{
// Given String
String s = "223015150";
// Length of the given String
int N = s.length();
// Function Call
System.out.print(
lenOfLongestReqSubstr(s, N));
}
}
// This code is contributed by Rajput-Ji
Python3
# Python3 program for the
# above approach
# Function to find length of
# the longest substring with
# each element occurring even
# number of times
def lenOfLongestReqSubstr(s, N):
# Initialize unordered_map
ind = {}
mask = 0
ind[0] = -1
# Stores the length of the
# longest required substring
ans = 0
# Traverse the string
for i in range(N):
# Stores the value of the
# digit present at current
# index
val = ord(s[i]) - ord('0')
# Bitwise XOR of the mask
# with 1 left-shifted by val
mask ^= (1 << val)
# Check if the value of mask
# is already present in ind
# or not
if (mask in ind):
# Update the final answer
ans = max(ans,
i - ind[mask])
# Otherwise
else:
ind[mask] = i
# Return the answer
return ans
# Driver Code
if __name__ == "__main__":
# Given string
s = "223015150"
#:Length of the given
# string
N = len(s)
# Function Call
print(lenOfLongestReqSubstr(s, N))
# This code is contributed by Chitranayal
C#
// C# program for the
// above approach
using System;
using System.Collections.Generic;
class GFG{
// Function to find length of the
// longest subString with each element
// occurring even number of times
static int lenOflongestReqSubstr(String s,
int N)
{
// Initialize unordered_map
Dictionary ind =
new Dictionary();
int mask = 0;
ind.Add(0, -1);
// Stores the length of the
// longest required subString
int ans = 0;
// Traverse the String
for (int i = 0; i < N; i++)
{
// Stores the value of the
// digit present at current
// index
int val = s[i] - '0';
// Bitwise XOR of the mask
// with 1 left-shifted by val
mask ^= (1 << val);
// Check if the value of mask is
// already present in ind or not
if (ind.ContainsKey(mask))
{
// Update the readonly answer
ans = Math.Max(ans,
i - ind[mask]);
}
// Otherwise
else
ind.Add(mask, i);
}
// Return the answer
return ans;
}
// Driver Code
public static void Main(String[] args)
{
// Given String
String s = "223015150";
// Length of the given String
int N = s.Length;
// Function Call
Console.Write(
lenOflongestReqSubstr(s, N));
}
}
// This code is contributed by 29AjayKumar
Javascript
6
时间复杂度: O(N)
辅助空间: O(N)
如果您想与行业专家一起参加直播课程,请参阅Geeks Classes Live