输出:
!error
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
python解法
- 解题思路:
- 这段代码的目标是实现对一个压缩字符串的解压操作。输入的压缩字符串满足以下条件:
字符串是由字母和数字组成,数字表示前面字母的重复次数。
解压后的字符串需要符合原压缩规则。
具体步骤如下:
输入字符串的合法性检查:首先判断字符串中是否含有非小写字母和数字的字符,如果有则直接返回 !error。
解压过程:遍历压缩字符串,如果遇到数字,则认为它表示后一个字符的重复次数,根据数字展开字符;如果数字无效(如小于等于2,或后面没有字母),返回 !error。
压缩验证:解压后的字符串如果经过压缩后不再得到原始的压缩字符串,说明解压有问题,返回 !error。
返回解压后的字符串:如果解压顺利且验证通过,返回解压后的字符串
import re
def decompress_string(input_string):
if re.search(r"[^a-z0-9]", input_string):
return "!error"
result = []
i = 0
while i < len(input_string):
if input_string[i].isdigit():
count = int(input_string[i])
if count <= 2 or i + 1 >= len(input_string) or not input_string[i + 1].isalpha():
return "!error"
result.append(input_string[i + 1] * count)
i += 2
else:
result.append(input_string[i])
i += 1
if compress("".join(result)) != input_string:
return "!error"
return "".join(result)
def compress(text):
compressed = []
i = 0
while i < len(text):
count = 1
while i + 1 < len(text) and text[i] == text[i + 1]:
count += 1
i += 1
if count > 2:
compressed.append(f"{count}{text[i]}")
else:
compressed.extend([text[i]] * count)
i += 1
return "".join(compressed)
s = input()
print(decompress_string(s))
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
java解法
- 解题思路
- 该程序的目标是处理一个压缩格式的字符串,并对其进行解压缩操作,解压的结果要符合特定的规则,若不符合要求,则返回 !error。
合法性检查: 首先检查字符串是否只包含小写字母和数字。如果包含其他字符,则返回 !error。
正则表达式匹配: 使用正则表达式 (\d+)([a-z]) 来查找所有数字和字母的组合。数字代表后面字母的重复次数,如果数字小于等于2或者格式不对,返回 !error。
解压缩: 将匹配到的数字和字母按照规则展开,将字母按数字指定的次数重复。
压缩验证: 解压后的字符串要经过压缩操作,如果压缩后的结果不等于原始的输入字符串,则说明解压过程有误,返回 !error。
返回解压后的字符串: 如果解压和验证都通过,则返回解压后的字符串
import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
String input = scanner.nextLine();
System.out.println(getResult(input));
}
public static String getResult(String str) {
String originalStr = str;
if (!str.matches("[a-z0-9]*")) {
return "!error";
}
Pattern regExp = Pattern.compile("(\\d+)([a-z])");
Matcher matcher = regExp.matcher(str);
while (matcher.find()) {
String match = matcher.group();
int repeatTimes = Integer.parseInt(matcher.group(1));
char character = matcher.group(2).charAt(0);
if (repeatTimes <= 2) {
return "!error";
}
String expanded = String.valueOf(character).repeat(repeatTimes);
str = str.replace(match, expanded);
}
if (!zip(str).equals(originalStr)) {
return "!error";
}
return str;
}
public static String zip(String str) {
StringBuilder compressed = new StringBuilder();
int i = 0;
while (i < str.length()) {
int count = 1;
while (i + 1 < str.length() && str.charAt(i) == str.charAt(i + 1)) {
count++;
i++;
}
if (count > 2) {
compressed.append(count).append(str.charAt(i));
} else {
compressed.append(String.valueOf(str.charAt(i)).repeat(count));
}
i++;
}
return compressed.toString();
}
}
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
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
C++解法
更新中
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
C解法
更新中
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
JS解法
具体步骤如下:
合法性检查:
输入字符串必须只包含小写字母(a-z)和数字(0-9)。如果包含其他字符,立即返回 !error。
正则表达式匹配:
使用正则表达式 (\d+)([a-z]) 来查找所有数字和字母的组合。数字表示字母的重复次数,字母是要被重复的字符。
每次匹配到的数字需要满足重复次数大于2。如果数字小于等于2,则返回 !error。
对每个匹配项,将数字指定的字符重复相应的次数,并替换原字符串中的匹配部分。
解压完成后的压缩验证:
对解压后的字符串执行压缩操作(即通过 zip 函数)。如果压缩后的字符串和原始输入字符串不一致,说明解压过程出现了错误,返回 !error。
返回解压后的字符串:
如果解压和验证都成功,则返回解压后的字符串
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
rl.on("line", (line) => {
console.log(getResult(line));
});
function getResult(str) {
const originalStr = str;
if (/[^a-z0-9]/.test(str)) {
return "!error";
}
const regExp = /(\d+)([a-z])/g;
while (true) {
const match = regExp.exec(str);
if (!match) break;
const [src, repeatTimesStr, char] = match;
const repeatTimes = parseInt(repeatTimesStr, 10);
if (repeatTimes <= 2) {
return "!error";
}
const expanded = char.repeat(repeatTimes);
str = str.replace(src, expanded);
}
if (zip(str) !== originalStr) {
return "!error";
}
return str;
}
function zip(str) {
let compressed = [];
let i = 0;
while (i < str.length) {
let count = 1;
while (i + 1 < str.length && str[i] === str[i + 1]) {
count++;
i++;
}
if (count > 2) {
compressed.push(`${count}${str[i]}`);
} else {
compressed.push(str[i].repeat(count));
}
i++;
}
return compressed.join("");
}
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
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
注意:
如果发现代码有用例覆盖不到的情况,欢迎反馈!会在第一时间修正,更新。
解题不易,如对您有帮助,欢迎点赞/收藏
评论记录:
回复评论: