- 1、本文档共7页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
2014.10.19微软网上测试
题目1 : Beautiful String
时间限制:10000ms
单点时限:1000ms
内存限制:256MB
描述
We say a string is beautiful if it has the equal amount of 3 or more continuous letters (in increasing order.)
Here are some example of valid beautiful strings: abc, cde, aabbcc, aaabbbccc.
Here are some example of invalid beautiful strings: abd, cba, aabbc, zab.
Given a string of alphabets containing only lowercase alphabets (a-z), output YES if the string contains a beautiful sub-string, otherwise output NO.
输入
The first line contains an integer number between 1 and 10, indicating how many test cases are followed.
For each test case: First line is the number of letters in the string; Second line is the string. String length is less than 10MB.
输出
For each test case, output a single line YES/NO to tell if the string contains a beautiful sub-string.
提示
Huge input. Slow IO method such as Scanner in Java may get TLE.
样例输入
4
3
abc
4
aaab
6
abccde
3
abb
样例输出
YES
NO
YES
NO
题目2 : Performance Log
时间限制:8000ms
单点时限:1000ms
内存限制:256MB
描述
You are given a txt file, which is performance logs of a single-threaded program.
Each line has three columns as follow:
[Function Name] [TimeStamp] [Action]
[FunctionName] is a string of length between 1~255
[TimeStamp] format is hh:mm:ss
Valid values for Action column are START or END, marking the start or end of a function call.
Each function will only be called once.
Output the depth-first traversal result of the call graph with the total time of each function call. However, sometimes the performance log isnt correct and at that time you just need to output Incorrect performance log.
输入
The input only contains 1 case, first line is a positive number N representing the number of logs(1 = N = 20000), then there are N lines in next, each line is the log info containing [Function Name] [TimeStamp] [Action], [Function Name] is a string, you can assume the [Function Name] is distinct and the length between 1~255.
输出
Output the depth-first traversal result of the call graph with the
您可能关注的文档
- 九年级英语unit9-10.ppt
- (用)高一三月份月考数学试卷1.doc
- 九年级英语上册_Module_1过关测试_外研社.doc
- 九年级英语上学年Unit 1.doc
- 九年级英语上Unit1 Section A-Section B 课件.ppt
- 九年级英语unit15第3课时.ppt
- 九年级英语中考适应性试题.doc
- 九年级英语上期1-9单元模拟试卷.doc
- 九年级英语周周清之六.doc
- 九年级英语实用句子.doc
- 2025年民用航空装备行业现状分析报告及未来五至十年发展前景预测报告.docx
- 2025年免税业行业现状分析报告及未来五至十年发展前景预测报告.docx
- 2025年炸药及火工产品制造行业现状分析报告及未来五至十年发展前景预测报告.docx
- 2025年油气田开发地面系统装备行业现状分析报告及未来五至十年发展前景预测报告.docx
- 2025年军工企业供应链管理服务行业现状分析报告及未来五至十年发展前景预测报告.docx
- 2025年军用鞋行业现状分析报告及未来五至十年发展前景预测报告.docx
- 2025年特种设备检验检测行业现状分析报告及未来五至十年发展前景预测报告.docx
- 2025年空中交通管理系统行业现状分析报告及未来五至十年发展前景预测报告.docx
- 2025年通航飞行服务站行业现状分析报告及未来五至十年发展前景预测报告.docx
- 2025年空中交通管理行业现状分析报告及未来五至十年发展前景预测报告.docx
文档评论(0)