- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
java解法
- 解题思路
- 该代码旨在从字符串 s1 中提取出不包含十六进制字符(0-9, a-f)的子字符串,并从中找到符合字符串 s2 的字符种类限制的最长有效子字符串。
分割字符串 s1
使用正则表达式 “[0-9a-f]+” 将字符串 s1 按照十六进制字符分割,提取出不含这些字符的子字符串。
结果存储在 validParts 数组中。
计算 s2 的字符种类
遍历 s2 中的所有字符,统计唯一字符的数量,作为字符种类限制 targetCount。
使用一个 HashSet 来存储字符,从而快速计算唯一字符数量。
筛选符合条件的子字符串
遍历 validParts 中的每个子字符串:
如果子字符串为空,则跳过。
计算子字符串中的唯一字符数量 uniqueInPart。
如果 uniqueInPart 不超过 targetCount:
检查是否比当前结果更优:
如果 uniqueInPart 更大,则更新结果。
如果 uniqueInPart 相同,则按字典序比较,选择较大的字符串。
返回结果
如果有符合条件的子字符串,返回最符合条件的字符串。
如果没有符合条件的子字符串,返回 “Not Found”。
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String s1 = sc.next();
String s2 = sc.next();
System.out.println(findSub(s1, s2));
}
public static String findSub(String s1, String s2) {
String[] validParts = s1.split("[0-9a-f]+");
int targetCount = uniqueCount(s2);
String result = "Not Found";
int maxUnique = 0;
for (String part : validParts) {
if (!part.isEmpty()) {
int uniqueInPart = uniqueCount(part);
if (uniqueInPart <= targetCount) {
if (uniqueInPart > maxUnique || (uniqueInPart == maxUnique && part.compareTo(result) > 0)) {
result = part;
maxUnique = uniqueInPart;
}
}
}
}
return result;
}
private static int uniqueCount(String s) {
Set<Character> uniqueChars = new HashSet<>();
for (char c : s.toCharArray()) {
uniqueChars.add(c);
}
return uniqueChars.size();
}
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
C++解法
- 解题思路
- 这段代码的目标是,从输入的字符串 str1 中找到一个最长的子串,且该子串中唯一字符的数量不能超过另一个输入字符串 str2 中的唯一字符数量。如果没有满足条件的子串,返回 “Not Found”。
主要步骤:
使用正则表达式将 str1 切分为非十六进制格式的子串。
将 str2 转换为一个集合,获取其中唯一字符的数量。
遍历切分出的所有子串,筛选出唯一字符数不超过 str2 中唯一字符数的子串。
按照以下规则对筛选出的子串进行排序:
首先比较子串的唯一字符数量,数量多的优先。
如果唯一字符数量相同,长度更长的优先。
返回符合条件的最长子串;如果没有符合条件的子串,返回 “Not Found”。
#include
#include
#include
#include
#include
#include
using namespace std;
string getResult(const string& str1, const string& str2) {
regex pattern("[0-9a-f]+");
sregex_token_iterator it(str1.begin(), str1.end(), pattern, -1);
sregex_token_iterator end;
set<char> str2Set(str2.begin(), str2.end());
int count = str2Set.size();
vector<string> valids;
while (it != end) {
string valid = *it;
set<char> validSet(valid.begin(), valid.end());
if (!valid.empty() && validSet.size() <= count) {
valids.push_back(valid);
}
++it;
}
if (!valids.empty()) {
sort(valids.begin(), valids.end(), [&](const string& a, const string& b) {
if (set<char>(a.begin(), a.end()).size() != set<char>(b.begin(), b.end()).size()) {
return set<char>(a.begin(), a.end()).size() > set<char>(b.begin(), b.end()).size();
}
return a.size() > b.size();
});
return valids[0];
} else {
return "Not Found";
}
}
int main() {
string str1, str2;
getline(cin, str1);
getline(cin, str2);
cout << getResult(str1, str2) << endl;
return 0;
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
C解法
更新中
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
JS解法
具体解题步骤如下:
提取非十六进制子串:
使用正则表达式匹配 str1 中所有非十六进制字符的子串。
十六进制字符包括 0-9 和 a-f。
提取出的子串需排除空子串。
计算基准字符集:
统计字符串 str2 中的唯一字符数量,作为条件基准。
筛选有效子串:
遍历提取出的所有子串,检查其唯一字符数量是否小于或等于 str2 中的唯一字符数量。
如果符合条件,将其作为候选子串进行比较。
排序和优先级:
如果子串的唯一字符数量更高,则优先。
如果唯一字符数量相同,选择更大的字典序子串(按照字母顺序比较)。
返回结果:
如果有有效子串,返回符合条件的最长子串。
如果没有符合条件的子串,返回 “Not Found”
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
let lines = [];
rl.on("line", (line) => {
lines.push(line);
if (lines.length === 2) {
const str1 = lines[0];
const str2 = lines[1];
console.log(findLargestSubstring(str1, str2));
lines = [];
}
});
function findLargestSubstring(str1, str2) {
const reg = /[0-9a-f]+/g;
const validSubs = str1.split(reg).filter(Boolean);
const refCount = new Set(str2).size;
let maxSub = "Not Found";
let maxUniqueCount = -1;
for (const sub of validSubs) {
const uniqueCount = new Set(sub).size;
if (uniqueCount <= refCount && uniqueCount > maxUniqueCount) {
maxUniqueCount = uniqueCount;
maxSub = sub;
} else if (uniqueCount === maxUniqueCount && sub > maxSub) {
maxSub = sub;
}
}
return maxSub;
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
注意:
如果发现代码有用例覆盖不到的情况,欢迎反馈!会在第一时间修正,更新。
解题不易,如对您有帮助,欢迎点赞/收藏
评论记录:
回复评论: