Lucky Substrings
- 样例输入
-
aabcd
- 样例输出
-
a
-
aa
-
aab
-
aabc
-
ab
-
abc
-
b
-
bc
-
bcd
-
c
-
cd
-
d
-
思路:暴力枚举。26以内斐波那契数打下表就可以了。用set去重排序。复杂度O(n*n*n);
-
我用前缀和,感觉并没有优化。
-
1 #include<stdio.h> 2 #include<algorithm> 3 #include<iostream> 4 #include<string.h> 5 #include<stdlib.h> 6 #include<math.h> 7 #include<cstdio> 8 #include<queue> 9 #include<stack> 10 #include<map> 11 #include<set> 12 using namespace std; 13 char cou[200]; 14 int fei[30]; 15 int flag[30]; 16 char dd[200]; 17 set<string>my; 18 set<string>::const_iterator it; 19 typedef struct pp 20 { 21 int al[26]; 22 pp() 23 { 24 memset(al,0,sizeof(al)); 25 } 26 } ss; 27 28 int main(void) 29 { 30 int n,i,j,k,p,q; 31 fei[1]=1; 32 fei[2]=1; 33 for(i=3; i<30; i++) 34 { 35 fei[i]=fei[i-1]+fei[i-2]; 36 if(fei[i]>=26) 37 { 38 break; 39 } 40 } 41 int zz=i; 42 for(i=1; i<zz; i++) 43 flag[fei[i]]=1; 44 while(scanf("%s",cou)!=EOF) 45 { 46 my.clear(); 47 ss ak[200]; 48 int l=strlen(cou); 49 int cnt=0; 50 ak[cnt].al[cou[0]-'a']++; 51 for(i=1; i<l; i++) 52 { 53 ak[i].al[cou[i]-'a']++; 54 for(j=0; j<26; j++) 55 { 56 ak[i].al[j]+=ak[i-1].al[j]; 57 } 58 } 59 int yy[26]; 60 for(i=0; i<l; i++) 61 { 62 for(int s=0; s<26; s++) 63 { 64 yy[s]=ak[i].al[s]; 65 } 66 int ans=0; 67 for(int s=0; s<26; s++) 68 { 69 if(yy[s]) 70 { 71 ans++; 72 } 73 74 } 75 if(flag[ans]) 76 { 77 memset(dd,0,sizeof(dd)); 78 int z=0; 79 int s; 80 for( s=0; s<=i; s++) 81 { 82 dd[z++]=cou[s]; 83 } 84 my.insert(dd); 85 86 } 87 } 88 for(i=0; i<l; i++) 89 { 90 for(j=i+1; j<l; j++) 91 { 92 for(int s=0; s<26; s++) 93 { 94 yy[s]=ak[j].al[s]-ak[i].al[s]; 95 } 96 int ans=0; 97 for(int s=0; s<26; s++) 98 { 99 if(yy[s])100 {101 ans++;102 }103 104 }105 if(flag[ans])106 {107 memset(dd,0,sizeof(dd));108 int z=0;109 int s;110 for( s=i+1; s<=j; s++)111 {112 dd[z++]=cou[s];113 }114 my.insert(dd);115 }116 }117 }118 for(it=my.begin(); it!=my.end(); it++)119 {120 cout<<*it<<endl;121 }122 }123 return 0;124 }
描述
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.
Lucky Substrings的更多相关文章
- hihocoder 1152 Lucky Substrings
#1152 : Lucky Substrings 时间限制:10000ms 单点时限:1000ms 内存限制:256MB 描述 A string s is LUCKY if and only if t ...
- 微软2016校园招聘在线笔试第二场 题目1 : Lucky Substrings
时间限制:10000ms 单点时限:1000ms 内存限制:256MB 描述 A string s is LUCKY if and only if the number of different ch ...
- hihocoder #1152 Lucky Substrings 【字符串处理问题】strsub()函数+set集合去重
#1152 : Lucky Substrings时间限制:10000ms单点时限:1000ms内存限制:256MB描述A string s is LUCKY if and only if the nu ...
- Lucky String
Lucky String -- 微软笔试 标签(空格分隔): 算法 A string s is LUCKY if and only if the number of different charact ...
- 【每天一道算法题】Lucky String
A string s is LUCKY if and only if the number of different characters in s is a fibonacci number. Gi ...
- lucky 的 时光助理(2)
lucky小姐说:昨天晚上他喝醉了,发消息说他想我了,说他后悔了. 我很惊讶. 我问lucky:你们很久都没有联系, 突然说... 你怎么想. 没错,'他'就是lucky的前男友. lucky看着我, ...
- lucky 的 时光助理
2017年的lucky小姐,厌倦了现在的工作,她觉得这些的工作对于她而言不具备挑战性,她在迷茫春节过后该如何选择, 这里是距她走出校门整整一年的时光. lucky小姐从开发走向了实施,目的是想周游这个 ...
- [LeetCode] Unique Substrings in Wraparound String 封装字符串中的独特子字符串
Consider the string s to be the infinite wraparound string of "abcdefghijklmnopqrstuvwxyz" ...
- ZOJ3944 People Counting ZOJ3939 The Lucky Week (模拟)
ZOJ3944 People Counting ZOJ3939 The Lucky Week 1.PeopleConting 题意:照片上有很多个人,用矩阵里的字符表示.一个人如下: .O. /|\ ...
随机推荐
- shell 的 功能语句--1
[1]说明性语句 (1)shell 程序和语句 shell 程序由零或多条shell语句构成. shell语句包括三类:说明性语句.功能性语句和结构性语句. 说明性语句: 以#号开始到该行结束,不被解 ...
- 编程艺术第十六~第二十章:全排列/跳台阶/奇偶调序,及一致性Hash算法
目录(?)[+] 第十六~第二十章:全排列,跳台阶,奇偶排序,第一个只出现一次等问题 作者:July.2011.10.16.出处:http://blog.csdn.net/v_JULY_v. 引言 ...
- 非线性回归支持向量机——MATLAB源码
支持向量机和神经网络都可以用来做非线性回归拟合,但它们的原理是不相同的,支持向量机基于结构风险最小化理论,普遍认为其泛化能力要比神经网络的强.大量仿真证实,支持向量机的泛化能力强于神经网络,而且能避免 ...
- Bootstrap实战 - 瀑布流布局
讲 Bootstrap 基础的教程网上已经很多了,实际上 Bootstrap 中文网(bootcss.com)里的文档已经写的很详细了,但实战的案例却不多.这里用一些当前流行的网页布局为导向,使用 B ...
- HTTP 之 options预请求
一.HTTP一共有八种常见请求方法 get:参数在url上,浏览器长度有限制,不安全 post:参数不可见,长度不受限制 put:上传最新内容到指定位置 delete:删除请求的url所表示的资源 h ...
- Apache架构师的30条设计原则
本文作者叫 Srinath,是一位科学家,软件架构师,也是一名在分布式系统上工作的程序员. 他是 Apache Axis2 项目的联合创始人,也是 Apache Software 基金会的成员. 他是 ...
- ps精修
1.磨皮方法: a,, 添加高斯模糊后,按住alt键新建图层蒙版,设置前景色为白色,用画笔在脸上雀斑的位置涂抹,注意脸轮廓位置不要涂抹.最后添加曲线提亮 b. 添加蒙尘和划痕后,后面上面的一样
- jenkins的sonarqube之代码检测的两种方法
#:sonarqube下载地址,我们安装6.7 高版本已经不支持MySQL和Mariadb(最小3G内存) https://www.sonarqube.org/downloads/ #:安装文档 h ...
- URL+http协议
- Output of C++ Program | Set 1
Predict the output of below C++ programs. Question 1 1 // Assume that integers take 4 bytes. 2 #incl ...