codechef 营养题 第一弹
第一弾が始まる!
定期更新しない!
codechef problems 第一弹
一.Authentication Failed
原题题面
Several days ago Chef decided to register at one of the
programming sites. For registering he was asked to choose a
nickname and a password. There was no problem with choosing a
nickname ("Chef" is his favorite nickname), but choosing a
password in a secure way seemed to be a real problem for Chef.
Therefore, he decided to write a program which would generate
the password of length N consisting of small Latin letters a..z.
Then Chef successfully registered at the site and saved the
password in a file (as it was too hard to remember).
Today Chef decided to visit the site once again. He entered his
nickname, copied the password from the file... "Authentication
failed!" was the answer. Trying to understand the reason of
this, he noticed that the password in his file had length N+K
instead of N! Sure enough of the source of the problem, Chef
went straight to his young brother.
And Chef was right, it was his brother who had inserted K random
small Latin letters at some random positions (possibly at the
beginning or at the end) of the password. Chef's brother didn't
remember what exactly changes he had made at all, but he
promised that he had done nothing besides inserting letters.
As there is no other way to recover the password, Chef is now
starting to remove every possible combination of K letters from
the password trying to enter (when Chef obtains the same
password as one of the previously entered passwords, he doesn't
try to enter using this password again). Now the question is:
what is the number of times Chef will receive "Authentication
failed!" as the answer before successful entering in the worst
case? As the answer might be quite large, output its remainder
of division by 1009419529.
Input
The first line of the input file contains one integer T -- the
number of test cases (no more than 10). Each test case is
described by a line containing two integers N and K (1 ≤ N ≤
10000, 1 ≤ K ≤ 100) separated by a single space, followed by a
line containing a string of length N+K consisting of small Latin
letters a..z.
Output
For each test case output just one line containing the required
number modulo 1009419529.
Example
Input:
3
2 1
aaa
3 1
abcd
4 2
ababab
Output:
0
3
10
Explanation:
In the first test case, the password is definitely "aa". In the
second test case, it can be "abc", "abd", "acd" or "bcd", so in
the worst case Chef will guess the correct option from the
fourth attempt, thus making 3 unsuccessful attempts.
Description
你把一个长为N的小写字母组成的密码保存在一个txt文件里;一个熊孩子
在密码的某些位置插入了共计K个字母,注意这里的K个字母不存在重复;
你决定把密码重新试出来;求最坏的情况下需要试多少次?
规定:N<=1W,K<=100
Solution
我们选择用递推的方式计数
先设计计数状态吧
设f[i][j]为前i位中去掉了j位且第i个字符未删除的方案数
那么我们的递推式是f[i][j]=f[i-1][j]+f[i-2][j-1]+f[i-3][j-2]+...
直接枚举每次累加的时间复杂度为O(N*K*K),超时
由于除了f[i-1][j]以外,其他项可以看作是递推矩阵中一个对角线上的
数字和,即∑f[i-x][j-x+1]
那么考虑前缀和优化,多加几个数组就行了
优化后的时间复杂度为O(N*K),O(100W)->AC
Code
#include <stdio.h>
#include <memory.h>
#define MaxL 10110
#define MaxK 110
#define MaxBuf 1<<22
#define mo 1009419529
#define RG register
#define Blue() ((S==T&&(T=(S=B)+fread(B,1,MaxBuf,stdin),S==T))?0:*S++)
#define dmin(a,b) ((a)<(b)?(a):(b))
#define dmax(a,b) ((a)>(b)?(a):(b))
char B[MaxBuf],*S=B,*T=B;
template<class Type>inline void Rin(RG Type &x){
x=;RG int c=Blue();
for(;c<||c>;c=Blue())
;
for(;c>&&c<;c=Blue())
x=(x<<)+(x<<)+c-;
}
inline void geTc(char *C){
char c=Blue();
for(;c<'a'||c>'z';c=Blue())
;
for(;c>='a'&&c<='z';c=Blue())
*C++=c;
}
char ch[MaxL];
int kase,n,k,f[MaxL][MaxK],g[MaxL],h[][MaxL],ans;
#define FO(x) {freopen(#x".in","r",stdin);}
int main(){
FO(cc authen failed);
Rin(kase);
while(kase--){
memset(f,,sizeof f);
memset(g,,sizeof g);
memset(h,,sizeof h);
ans=;
Rin(n),Rin(k),geTc(ch);
f[][]=g[]=;
for(RG int i=;i<=n+k;i++){
RG int s=ch[i-]-'a';
for(RG int j=;j<=dmin(i-,k);j++){
f[i][j]=(g[i-j-]-h[s][i-j])%mo;
if(i-j==n)(ans+=f[i][j])%=mo;
(g[i-j]+=f[i][j])%=mo;
(h[s][i-j]+=f[i][j])%=mo;
}
}
printf("%d\n",(ans-+mo)%mo);
}
return ;
}
codechef 营养题 第一弹的更多相关文章
- codechef营养题 第二弹
		
第二弾が始まる! codechef problems 第二弹 一.Backup Functions 题面 One unavoidable problem with running a restaura ...
 - codechef营养题 第三弹
		
第三弾が始まる! codechef problems 第三弹 一.Motorbike Racing 题面 It's time for the annual exciting Motorbike Rac ...
 - espcms代码审计第一弹
		
以前的代码审计都是在CTF比赛题里面进行对于某一段代码的审计,对于后端php整体代码和后端整体架构了解的却很少,所以有空我都会学习php的代码审计,以提高自己 环境就直接用的是phpstudy,学习的 ...
 - 关于『HTML』:第一弹
		
关于『HTML』:第一弹 建议缩放90%食用 根据C2024XSC212童鞋的提问, 我准备写一稿关于『HTML』基础的帖 But! 当我看到了C2024XSC130的 "关于『HTML5』 ...
 - typecho流程原理和插件机制浅析(第一弹)
		
typecho流程原理和插件机制浅析(第一弹) 兜兜 393 2014年03月28日 发布 推荐 5 推荐 收藏 24 收藏,3.5k 浏览 虽然新版本0.9在多次跳票后终于发布了,在漫长的等待里始终 ...
 - 我的长大app开发教程第一弹:Fragment布局
		
在接下来的一段时间里我会发布一个相对连续的Android教程,这个教程会讲述我是如何从零开始开发“我的长大”这个Android应用. 在开始之前,我先来介绍一下“我的长大”:这是一个校园社交app,准 ...
 - Hadoop基础-MapReduce的工作原理第一弹
		
Hadoop基础-MapReduce的工作原理第一弹 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 在本篇博客中,我们将深入学习Hadoop中的MapReduce工作机制,这些知识 ...
 - Java基础-程序流程控制第一弹(分支结构/选择结构)
		
Java基础-程序流程控制第一弹(分支结构/选择结构) 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 一.if语句 1>.if语句的第一种格式 if(条件表达式){ 语句体: ...
 - RMQ_第一弹_Sparse Table
		
title: RMQ_第一弹_Sparse Table date: 2018-09-21 21:33:45 tags: acm RMQ ST dp 数据结构 算法 categories: ACM 概述 ...
 
随机推荐
- vue实例以及生命周期
			
1.Vue实例API 1.构造器(实例化) var vm = new Vue({ //选项 |-------DOM(3) | |-------el (提供一个在页面上已存在的 DOM 元素作为 V ...
 - Nginx(一) 安装基于centos7
			
1. nginx介绍 1.1. 什么是nginx Nginx是一款高性能的http 服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器.由俄罗斯的程序设计师Igor Sysoev所开 ...
 - 04-Vue中的动画
			
Vue中的动画 为什么要有动画:动画能够提高用户的体验,帮助用户更好的理解页面中的功能: -使用过渡类名 1.html <div id="app"> <input ...
 - 51NOD 1088 最长回文子串&1089 最长回文子串 V2(Manacher算法)
			
回文串是指aba.abba.cccbccc.aaaa这种左右对称的字符串. 输入一个字符串Str,输出Str里最长回文子串的长度. Input 输入Str(Str的长度 <= 1000(第二题要 ...
 - less新手入门(一) 变量、extend扩展
			
前景提要 个人在学习less时候的学习笔记及个人总结,主要是结合less中文网来学习的,但是说是中文网并不是中文呀,看起来很耽误时间,为了避免以后再次看的时候还要翻译思考,特意做此总结,方便以后查阅. ...
 - [ CodeForces 1064 B ] Equations of Mathematical Magic
			
\(\\\) \(Description\) \(T\) 组询问,每次给出一个 \(a\),求方程 \[ a-(a\oplus x)-x=0 \] 的方案数. \(T\le 10^3,a\le 2^{ ...
 - P1823 音乐会的等待
			
题目描述 N个人正在排队进入一个音乐会.人们等得很无聊,于是他们开始转来转去,想在队伍里寻找自己的熟人.队列中任意两个人A和B,如果他们是相邻或他们之间没有人比A或B高,那么他们是可以互相看得见的. ...
 - C++学习笔记(二)之数组
			
数组作形参时,实际传入数组首地址 void print(const int*) void print(const int []) ]) 三种方法等价
 - 常用css属性总结
			
边框修饰:border------>top,bottom,left,right上下左右边框 分为:color,类型style{ groove,dashed,ridge,solid}一个值---- ...
 - PKI中常用编码:ASN.1 DER BER Base64
			
迟到了两年的笔记... 在PKI的应用中,常会用到以下几个编码概念: ASN.1(Abstract Syntax Notation One, 抽象语法标记) 定义:A standard interfa ...