华中农业大学第五届程序设计大赛网络同步赛题解
A.Little Red Riding Hood
B.Choosy in Food
•F[i]:从第I个点到终点的期望步数
•F[i] = (F[i + k] + k ) * P[k]
•F[ed] = 0
•高斯消元求解
•注意存在从起点不能到达终点的情况
C.Friends
•F[rt][len] :节点rt的子孙里,距离rt的为len的节点个数
•ans[rt][len] : 整棵树上,距离rt为len的节点个数
•F值一次简单的深搜可以得到
•而ans[rt][len] = F[rt][len] + ans[fa(rt)][len – 1] – F[fa(rt)][len – 1]
D.GCD
E.One Stroke
•在每一个根到叶子结点的路径上用双指针即可求出一笔能画出的最多结点。
•双指针思路:枚举起点i,向右不断移动终点j,直到ij之间的和不大于k,复杂度O(nlogn)
•如果暴力优美也能过(T^T),复杂度O(nlognlogn)
F.Escape from the Darkness
G.Sequence Number
•这是一道排序可以过的题,也可以rmq+二分
•最快的写法可以用单调栈做到O(n)
H.Mathematical Game
I.Candies
•线段树中查询一个区间里,最长的连续B区间的长度
•区间合并时考虑左间的右部连续B加上右区间的左部连续B区间可能会更新这个区间的MAX_B值
•同时更新区间的左部连续B长度时,考虑左区间全部为B时,应加上右区间的左B长度
•更新区间的右部连续长度同理
•查询时,同样要根据更新的原理来更新查询的答案
J.Color Circle
• 搜索,DFS即可
K.Deadline
•这题只要想到思路还是很简单的,假设所有工程师每天都在修复bug,那么对天数记录bug的前缀和,O(n)得到答案max(pre[i]+i-1)/i)
L.Happiness
Description
Chicken brother is very happy today, because he attained N pieces of biscuits whose tastes are A or B. These biscuits are put into a box. Now, he can only take out one piece of biscuit from the box one time. As we all know, chicken brother is a creative man. He wants to put an A biscuit and a B biscuit together and eat them. If he take out an A biscuit from the box and then he take out a B biscuit continuously, he can put them together and eat happily. Chicken brother’s happiness will plus one when he eat A and B biscuit together one time.
Now, you are given the arrangement of the biscuits in the box(from top to bottom) ,please output the happiness of Chicken Brother when he take out all biscuit from the box.
Input
The first line is an integer indicates the number of test cases.
In each case, there is one line includes a string consists of characters ‘A’ and ‘B’.
The length of string is not more than 1000000.
Output
For each test case:
The first line output “Case #k:", k indicates the case number.
The second line output the answer.
Sample Input
1
ABABBBA
Sample Output
Case #1:
2
HINT
Source
题解:
•求字符串中AB出现的次数
•遍历一次字符串即可
特别提醒:此题出题人已挖好大坑等着萌新们入坑,我也是第一次遇到这种100W就TL的情况,原因我给你们分析一下,就是这个strlen的应用,之前我将strlen放在for循环内,复杂度为100W*100W,O(n^2)必然超时,只要把strlen提出来,复杂度降为100W+100W,O(n+n),神TM知道这个函数调用也会TL!
下面附上AC代码:
1 #include <bits/stdc++.h> 2 using namespace std; 3 char s[1000010]; 4 int main() 5 { 6 int n; 7 while(cin>>n) 8 { 9 int ans=0; 10 for(int i=1;i<=n;i++) 11 { 12 scanf("%s",s); 13 printf("Case #%d:\n",i); 14 int len=strlen(s); 15 int ans=0; 16 for(int j=0;j<len;j++) 17 { 18 if(s[j]=='A'&&s[j+1]=='B') 19 ans++; 20 } 21 printf("%d\n",ans); 22 } 23 } 24 return 0; 25 }
作 者:Angel_Kitty
出 处:https://www.cnblogs.com/ECJTUACM-873284962/
关于作者:阿里云ACE,目前主要研究方向是Web安全漏洞以及反序列化。如有问题或建议,请多多赐教!
版权声明:本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文链接。
特此声明:所有评论和私信都会在第一时间回复。也欢迎园子的大大们指正错误,共同进步。或者直接私信我
声援博主:如果您觉得文章对您有帮助,可以点击文章右下角【推荐】一下。您的鼓励是作者坚持原创和持续写作的最大动力!
欢迎大家关注我的微信公众号IT老实人(IThonest),如果您觉得文章对您有很大的帮助,您可以考虑赏博主一杯咖啡以资鼓励,您的肯定将是我最大的动力。thx.
我的公众号是IT老实人(IThonest),一个有故事的公众号,欢迎大家来这里讨论,共同进步,不断学习才能不断进步。扫下面的二维码或者收藏下面的二维码关注吧(长按下面的二维码图片、并选择识别图中的二维码),个人QQ和微信的二维码也已给出,扫描下面👇的二维码一起来讨论吧!!!
欢迎大家关注我的Github,一些文章的备份和平常做的一些项目会存放在这里。