Lucky String
Lucky String -- 微软笔试
标签(空格分隔): 算法
A string s is LUCKY if and only if the number of different characters in s is a fibonacci number. Given a string consisting of only lower case letters , output all its lucky non-empty substrings in lexicographical order. Same substrings should be printed once.
输入描述:
a string consisting no more than 100 lower case letters.
输出描述:
output the lucky substrings in lexicographical order.one per line. Same substrings should be printed once.
输入例子:
aabcd
输出例子:
a
aa
aab
aabc
ab
abc
b
bc
bcd
c
cd
d
描述:
一个字符串是Lucky的当且仅当它里面字符的数目为Fibonacci数列中的一个数。如果给出一个字符串,它里面只包含小写字母,输出它所有的除空字符串外的Lucky SubString,每个子串只能被输出一次。并且输出的子串按照字典序列排序。
思路:
对于整个字符:
- 依次遍历字符串,截取子串
- 统计子串中的字符种类数,判断是否已经在结果集中出现或者是否符合Fibonacci数列
- 调用集合类的字符串排序算法,按照字典序列将结果集输出。
代码如下:
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;
public class LuckyString {
/**
* 给定一个字符串s,统计它里面一共出现了多少种字符
* @param s
* @return
*/
public static int count(String s) {
char[] ch = s.toCharArray();
boolean[] letter = new boolean[26];
for(int i=0; i<26; i++)
letter[i] = false;
int res = 0;
for(int i=0; i<ch.length; i++) {
if(letter[ch[i]-'a'] == false) {
letter[ch[i] -'a'] = true;
res++;
}
}
return res;
}
/**
* 二分查找一个数是否在给定数组中出现
* @param nums
* @param n
* @return
*/
public static int binearySearch(int[] nums, int n) {
int left = 0, right = nums.length-1, mid = (left+right)/2;
while(left <= right) {
if(nums[mid] < n) {
left = mid + 1;
}
else if(nums[mid] > n)
right = mid - 1;
else return mid;
mid = (left + right) / 2;
}
return -1;
}
/**
* 解决问题的主要函数。
* 1. 依次遍历字符串,截取子串
* 2. 统计子串中的字符种类数,判断是否已经在结果集中出现或者是否符合Fibonacci数列
* 3. 调用集合类的字符串排序算法,按照字典序列将结果集输出。
* @param s
*/
public static void solve(String s) {
int[] fibo = {1,2,3,5,8,13,21,34,55,89};
List<String> res = new ArrayList<String>();
for(int i=0; i<s.length(); i++) {
for(int j=i+1; j<s.length()+1; j++) {
String sub = s.substring(i, j);
int num = count(sub);
if(binearySearch(fibo, num) >= 0 && !res.contains(sub)) //包含该数
res.add(sub);
}
}
Collections.sort(res);
for(int i=0; i<res.size(); i++)
System.out.println(res.get(i));
}
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
while(sc.hasNext()) {
String s = sc.nextLine();
solve(s);
}
}
}
Lucky String的更多相关文章
- 【每天一道算法题】Lucky String
A string s is LUCKY if and only if the number of different characters in s is a fibonacci number. Gi ...
- 微软在线测试之lucky string,有关斐波那契的题目都在此了
解决方案: int _tmain(int argc,_TCHAR* argv[]) { size_t fib[] = {1,2,3,5,8,13,21,34}; string str,tempstr; ...
- Codeforces 110B-Lucky String(技能)
B. Lucky String time limit per test 2 seconds memory limit per test 256 megabytes input standard inp ...
- Codeforces Round #254 (Div. 1) D. DZY Loves Strings hash 暴力
D. DZY Loves Strings 题目连接: http://codeforces.com/contest/444/problem/D Description DZY loves strings ...
- Codeforces Beta Round 84 (Div. 2 Only)
layout: post title: Codeforces Beta Round 84 (Div. 2 Only) author: "luowentaoaa" catalog: ...
- 枚举 + 进制转换 --- hdu 4937 Lucky Number
Lucky Number Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others)To ...
- CodeForces 146A Lucky Ticket
Lucky Ticket Time Limit:2000MS Memory Limit:262144KB 64bit IO Format:%I64d & %I64u Submi ...
- hihocoder 1152 Lucky Substrings
#1152 : Lucky Substrings 时间限制:10000ms 单点时限:1000ms 内存限制:256MB 描述 A string s is LUCKY if and only if t ...
- codeforces 630C Lucky Numbers
C. Lucky Numbers time limit per test 0.5 seconds memory limit per test 64 megabytes input standard i ...
随机推荐
- linux系统的时间调整
以centos为例,其它系统应该是一样或者类似的. 需要用到两个命令: date 和 hwclock 其中 date 命令由 coreutils 这个包提供, hwclock 命令由 util-lin ...
- 【py网页】urllib模块,urlopen
Python urllib 库提供了一个从指定的 URL 地址获取网页数据,然后对其进行分析处理,获取想要的数据. 下面是在 Python Shell 里的 urllib 的使用情况: 01 Pyth ...
- Qt可执行程序写入版本信息
[1]新建Qt工程 1.1 具体新建步骤不赘述. 1.2 新建工程后文件目录如下: 1.3 留意对比一下你的代码目录,可以发现我的文件目录中多了一个rc类型的资源文件.那么,它也就是关键点. 1.4 ...
- linux设备驱动归纳总结(八):2.总线、设备和驱动的关系【转】
本文转载自:http://blog.chinaunix.net/uid-25014876-id-110295.html linux设备驱动归纳总结(八):2.总线.设备和驱动的关系 xxxxxxxxx ...
- Android BlueDroid(一):BlueDroid概述 【转】
转自:http://blog.csdn.net/xubin341719/article/details/40378205 版权声明:本文为博主原创文章,未经博主允许不得转载. 关键词:bluedroi ...
- SPOOL、SQLLOADER数据导出导入的一点小总结
1.SQLLOADER的CONTROL文件 //**************************************************************************** ...
- array DEMO
[xiluhua@vm-xiluhua][~]$ declare -a array #申明数组 [xiluhua@vm-xiluhua][~]$ array=("a" " ...
- SQL Server 2005 日志文件过大处理
由于安装的时候没有计划好空间,默认装在系统盘,而且又没有做自动备份.截断事务日志等,很快LDF文件就达到十几G,或者几十G ,此时就不得不处理了. 备份和计划就不说了,现在就说下怎么把它先删除吧: 1 ...
- Postgres-XL集群搭建
Postgres-XL 是一个完全满足ACID的.开源的.可方便进行水平扩展的.多租户安全的.支持share-nothing;支持海量数据并行处理-MPP(Massively Parallel Pro ...
- [转]Mac OS X framework 解析
转载地址:http://hi.baidu.com/yonderbyron/item/9838b73472152e009cc65ec8 Mac OS X framework 解析 1.framework ...