博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu Rikka with string (dfs)
阅读量:5230 次
发布时间:2019-06-14

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

#include
#include
#include
#include
using namespace std;char a[1000+100];int vis[1000+100];int n;int cnt;int ok;bool huiwen(){ int l=0; int r=strlen(a)-1; while(l
=r) return false; return true;}void dfs(int rt){ if(ok==1) return ; if(rt>=cnt) { if(huiwen()) { printf("%s\n",a); ok=1; } return ; } for(int i=0;i<26;i++) { a[vis[rt]]='a'+i; dfs(rt+1); }}int main(){ int i,j,k; while(scanf("%d",&n)!=EOF) { cnt=0;ok=0; scanf("%s",a); for(i=0;i

  

转载于:https://www.cnblogs.com/sola1994/p/4445367.html

你可能感兴趣的文章
svn客户端清空账号信息的两种方法
查看>>
springboot添加servlet的两种方法
查看>>
java的Array和List相互转换
查看>>
layui父页面执行子页面方法
查看>>
如何破解域管理员密码
查看>>
Windows Server 2008 R2忘记管理员密码后的解决方法
查看>>
IE11兼容IE8的设置
查看>>
windows server 2008 R2 怎么集成USB3.0驱动
查看>>
Foxmail:导入联系人
查看>>
vue:axios二次封装,接口统一存放
查看>>
vue中router与route的区别
查看>>
js 时间对象方法
查看>>
网络请求返回HTTP状态码(404,400,500)
查看>>
Spring的JdbcTemplate、NamedParameterJdbcTemplate、SimpleJdbcTemplate
查看>>
Mac下使用crontab来实现定时任务
查看>>
303. Range Sum Query - Immutable
查看>>
图片加载失败显示默认图片占位符
查看>>
【★】浅谈计算机与随机数
查看>>
《代码阅读方法与实现》阅读笔记一
查看>>
解决 sublime text3 运行python文件无法input的问题
查看>>