博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #449 (Div. 2)C. Nephren gives a riddle
阅读量:6478 次
发布时间:2019-06-23

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

链接:

题意:字符串的递归。f0=What are you doing at the end of the world? Are you busy? Will you save us?    

          s1=What are you doing while sending "

          s2="? Are you busy? Will you send "

          s3="?

      其中fi=s1+fi-1+s2+fi-1+s3;

   输入q,n,k(1<=q<=10,0 ≤ n ≤ 10^5, 1 ≤ k ≤ 10^18);q表示询问次数,n,k,表述fn中第k个字符;当k大于fn的长度输出‘.'。

   输出fn中第k个字符。

   注意:k非常的大,可以自己测试一下当n为多少的时候长度就超过1e18,之后的字符串长度就可以与此时的fn的长度一样。

1 #include
2 using namespace std; 3 typedef long long LL; 4 const int maxn=1e5+5; 5 char *f0="What are you doing at the end of the world? Are you busy? Will you save us?"; 6 ///75 7 char *s1="What are you doing while sending \""; 8 ///34 9 char *s2="\"? Are you busy? Will you send \"";10 ///3111 char *s3="\"?";12 ///213 ///fi=s1+fi-1+s2+fi-1+s3;14 LL f[maxn];15 char get_(LL n,LL k)16 {17 if(k>f[n]) return '.';18 if(n==0) return f0[k-1];19 20 if(k<=strlen(s1)) return s1[k-1];///s121 22 k=k-strlen(s1);23 if(k<=f[n-1]) return get_(n-1,k);///fi-124 25 k=k-f[n-1];26 if(k<=strlen(s2)) return s2[k-1];///s227 28 k=k-strlen(s2);29 if(k<=f[n-1]) return get_(n-1,k);///fi-130 31 k=k-f[n-1];32 if(k<=strlen(s3)) return s3[k-1];///s333 }34 35 int main()36 {37 f[0]=75;38 f[1]=218;39 for(int i=2;i<=55;i++)40 f[i]=f[i-1]*2+68;41 for(int i=55;i<=100000;i++)42 f[i]=f[54];///2e1843 ///cout<
>Q;47 int i=0;48 while(Q--)49 {50 cin>>N>>K;51 cout<
View Code

 

转载于:https://www.cnblogs.com/Y-Meng/p/7966025.html

你可能感兴趣的文章
华为5300交换机链路捆绑
查看>>
UI2Code智能生成Flutter代码--整体设计篇
查看>>
我的友情链接
查看>>
【数据结构】复杂链表的复制
查看>>
Linux下常用的故障排查命令行
查看>>
CentOS 6.4 x86_64 最小化安装---基础优化总结
查看>>
SQL truncate 、delete与drop区别
查看>>
tomcat的maxThreads、acceptCount(最大线程数、最大排队数)
查看>>
Maven Plugins 与 PluginManagement的关系
查看>>
好程序员web前端分享HTML基本结构和基本语法
查看>>
动态规划算法解最长公共子序列问题
查看>>
“模态”DIV对话框
查看>>
[转贴] 如何有效地报告Bug
查看>>
【Spring开发】—— Spring注入静态变量
查看>>
CentOs7 急速安装 MySQL
查看>>
Haskell的仿函数
查看>>
Spring IOC AOP
查看>>
删除.svn文件夹及文件
查看>>
更换字体
查看>>
网络限速脚本
查看>>