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. /|\ ...
随机推荐
- 【STM32】使用SDIO进行SD卡读写,包含文件管理FatFs(终)-配合内存管理来遍历SD卡
[STM32]使用SDIO进行SD卡读写,包含文件管理FatFs(一)-初步认识SD卡 [STM32]使用SDIO进行SD卡读写,包含文件管理FatFs(二)-了解SD总线,命令的相关介绍 [STM3 ...
- 转 关于HttpClient,HttpURLConnection,OkHttp的用法
转自:https://www.cnblogs.com/zp-uestc/p/10371012.html 1 HttpClient入门实例 1.1发送get请求 1 2 3 4 5 6 7 8 9 10 ...
- 转 android design library提供的TabLayout的用法
原文出处:http://chenfuduo.me/2015/07/30/TabLayout-of-design-support-library/ 在开发中,我们常常需要ViewPager结合Fragm ...
- Linux基础命令---lftp登录ftp服务器
lftp lftp指令可以用来登录远程ftp服务器,这是一个字符界面的文件传输工具. 此命令的适用范围:RedHat.RHEL.Ubuntu.CentOS.SUSE.openSUSE.Fedora. ...
- "delete this" in C++
Ideally delete operator should not be used for this pointer. However, if used, then following points ...
- spring生成EntityManagerFactory的三种方式
spring生成EntityManagerFactory的三种方式 1.LocalEntityManagerFactoryBean只是简单环境中使用.它使用JPA PersistenceProvide ...
- my40_MySQL锁概述之意向锁
本文在锁概述的基础上,通常实验举例,详细地介绍了意向锁的原理. 锁范围 全局锁(global lock)表锁(table lock)行锁 (row lock) ROW LOCK的粒度LOCK_REC ...
- 【C/C++】习题3-3 数数字/算法竞赛入门经典/数组和字符串
[题目] 把前n个(n<=10000)的整数顺序写在一起:123456789101112-- 数一数0~9各出现多少次(输出10个整数,分别是0,1,2,--,9出现的次数) [解答] 暴力求解 ...
- 【Office】【Excel】将多个工作薄合为一个工作薄
前提:工作薄首行不能有合并的单元格 准备工作:将要合并的工作簿放在一个文件夹里面,文件夹中不能有乱七八糟的东西,只能有你要合并的工作薄 操作步骤:在此文件夹下创建Excel表格并打开,按下alt+F1 ...
- for循环中的变量泄漏
经典的案例 let arr = [] for(var i =0;i<=5;i++){ arr[i]= function fn(){ console.log(i) } } arr[0]() //6 ...