LeetCode 748.最短完整词
题目
如果单词列表(words)中的一个单词包含牌照(licensePlate)中所有的字母,那么我们称之为完整词。在所有完整词中,最短的单词我们称之为最短完整词。
单词在匹配牌照中的字母时不区分大小写,比如牌照中的 "P" 依然可以匹配单词中的 "p" 字母。
我们保证一定存在一个最短完整词。当有多个单词都符合最短完整词的匹配条件时取单词列表中最靠前的一个。
牌照中可能包含多个相同的字符,比如说:对于牌照 "PP",单词 "pair" 无法匹配,但是 "supper" 可以匹配。
示例 1:
输入:licensePlate = "1s3 PSt", words = ["step", "steps", "stripe", "stepple"]
输出:"steps"
说明:最短完整词应该包括 "s"、"p"、"s" 以及 "t"。对于 "step" 它只包含一个 "s" 所以它不符合条件。同时在匹配过程中我们忽略牌照中的大小写。
示例 2:
输入:licensePlate = "1s3 456", words = ["looks", "pest", "stew", "show"]
输出:"pest"
说明:存在 3 个包含字母 "s" 且有着最短长度的完整词,但我们返回最先出现的完整词。
注意:
牌照(licensePlate)的长度在区域[1, 7]中。
牌照(licensePlate)将会包含数字、空格、或者字母(大写和小写)。
单词列表(words)长度在区间 [10, 1000] 中。
每一个单词 words[i] 都是小写,并且长度在区间 [1, 15] 中。
自己的题解:
public String shortestCompletingWord(String licensePlate, String[] words) {
int[] ch = new int[26];
int rec = 0;
String nlicensePlate = licensePlate.toLowerCase();
for(int i=0; i<licensePlate.length(); i++) {
if(nlicensePlate.charAt(i)>='a' && nlicensePlate.charAt(i)<='z') {
ch[nlicensePlate.charAt(i)-'a']++;
rec++;
}
}
int[] nch = new int[26];
System.arraycopy(ch, 0, nch, 0, 26); //深浅拷贝是关键,直接用等号是拷贝引用,Debug被坑了半小时
int nrec = rec;
String res = "";
int reslen = 9999;
for(int i=0;i<words.length;i++) {
String strtemp = words[i];
String nstrtemp = strtemp.toLowerCase();
if(strtemp.length()<reslen) {
for(int j=0; j<strtemp.length(); j++) {
if(nch[nstrtemp.charAt(j)-'a']>0) {
nch[nstrtemp.charAt(j)-'a']--;
nrec--;
}
if(nrec == 0) {
res = strtemp;
reslen = strtemp.length();
}
}
nrec = rec;
System.arraycopy(ch, 0, nch, 0, 26);
}
}
return res;
}
System.arraycopy(ch, 0, nch, 0, 26);深拷贝
AC后看题解的时候才发现可以这么简洁
统计单词中字母个数完全可以拉一个函数出去
for的时候也可以使用for each(虽然效率一样)
for (String word: words)
自从暑假之后就没刷题,重新拾起LeetCode的帐号有空就刷一下
下一篇: 不同版本python安装pwntools
推荐阅读