HJ27 查找兄弟单词
描述
定义一个单词的“兄弟单词”为:交换该单词字母顺序(注:可以交换任意次),而不添加、删除、修改原有的字母就能生成的单词。 兄弟单词要求和原来的单词不同。例如: ab 和 ba 是兄弟单词。 ab 和 ab 则不是兄弟单词。 现在给定你 n 个单词,另外再给你一个单词 x ,让你寻找 x 的兄弟单词里,按字典序排列后的第 k 个单词是什么? 注意:字典中可能有重复单词。 数据范围:1 \le n \le 1000 \1≤n≤1000 ,输入的字符串长度满足 1 \le len(str) \le 10 \1≤len(str)≤10 , 1 \le k < n \1≤k<n输入描述:
输入只有一行。 先输入字典中单词的个数n,再输入n个单词作为字典单词。 然后输入一个单词x 最后后输入一个整数k输出描述:
第一行输出查找到x的兄弟单词的个数m 第二行输出查找到的按照字典顺序排序后的第k个兄弟单词,没有符合第k个的话则不用输出。示例1
输入:3 abc bca cab abc 1
输出:
2
bca
示例2
输入:6 cab ad abcd cba abc bca abc 1
输出:
3
bca
说明:
abc的兄弟单词有cab cba bca,所以输出3
经字典序排列后,变为bca cab cba,所以第1个字典序兄弟单词为bca
using System.Collections.Generic;
using System;
public class Program {
public static void Main() {
string line;
while ((line = System.Console.ReadLine()) !=
null) {
// 注意 while 处理多个 case
string[] tokens = line.Split(' ');
int count = int.Parse(tokens[0]);
int k = int.Parse(tokens[tokens.Length - 1]);
string x = tokens[tokens.Length - 2];
List<string> res = new List<string>();
for (int i = 1; i < tokens.Length - 2; i++) {
if (IsBrother(x, tokens[i]))
res.Add(tokens[i]);
}
res.Sort();
Console.WriteLine(res.Count);
if (res.Count >= k)
Console.WriteLine(res[k - 1]);
}
}
public static bool IsBrother(string x, string s) {
if (s.Length != x.Length || s == x) return false;
foreach (var item in x) {
if (!(GetCharCount(x, item) == GetCharCount(s, item))) {
return false;
}
}
return true;
}
public static int GetCharCount(string s, char c) {
int count = 0;
foreach (var item in s) {
if (item == c) {
count++;
}
}
return count;
}
}
标签:tokens,string,int,res,编程,bca,单词,牛客,HJ27 From: https://www.cnblogs.com/zhangdezhang/p/17819458.html