博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UVa 353 - Pesky Palindromes
阅读量:5902 次
发布时间:2019-06-19

本文共 1090 字,大约阅读时间需要 3 分钟。

称号:字符串统计回文子的数量。

分析:dp,暴力。因为数据是小,直接暴力可以解决。

说明:(UVa最终评出800该)。

#include 
#include
#include
#include
using namespace std;char str[82];char ans[3200][82];int main(){ while (~scanf("%s",str)) { int count = 0,len = strlen(str); for (int i = 1 ; i <= len ; ++ i) for (int s = 0 ; s < len ; ++ s) { int flag = 1; for (int t = s+i-1 ; t >= s ; -- t) if (str[s+s+i-1-t] != str[t]) { flag = 0; break; } if (flag) { for (int j = 0 ; j < i; ++ j) ans[count][j] = str[s+j]; ans[count][i] = 0; int same = 0; for (int j = 0 ; j < count ; ++ j) if (!strcmp(ans[j], ans[count])) { same = 1; break; } if (!same) count ++; } } printf("The string \'%s\' contains %d palindromes.\n",str,count); /* printf("The %d unique palindromes in \'boy\' are",count); for (int i = 0 ; i < count-1 ; ++ i) { printf(" \'%s\'",ans[i]); if (i < count-2) printf(","); else printf(" and "); } printf("\'%s\'.\n\n",ans[count-1]); */ } return 0;}

版权声明:本文博客原创文章。博客,未经同意,不得转载。

你可能感兴趣的文章
linux文件描述符
查看>>
传值引用和调用引用的区别
查看>>
hyper-v 无线网连接
查看>>
Python3.7.1学习(六)RabbitMQ在Windows环境下的安装
查看>>
Windows下memcached的安装配置
查看>>
ubuntu: firefox+flashplay
查看>>
web.xml 中CharacterEncodingFilter类的学习
查看>>
贪吃蛇逻辑代码
查看>>
实现c协程
查看>>
ASP.NET视频教程 手把手教你做企业论坛网站 视频教程
查看>>
[LeetCode] Meeting Rooms II
查看>>
从Swift学习iOS开发的路线指引
查看>>
Scribes:小型文本编辑器,支持远程编辑
查看>>
ssh 安装笔记
查看>>
3-继承
查看>>
海归千千万 为何再无钱学森
查看>>
vue2.0 仿手机新闻站(六)详情页制作
查看>>
JSP----九大内置对象
查看>>
Java中HashMap详解
查看>>
delphi基本语法
查看>>