ACM在线编译系统 Memory[KB] 、Time[MS] 、Lenght[Byte] 分别代表什么...
发布网友
发布时间:2024-10-13 11:07
我来回答
共2个回答
热心网友
时间:2024-10-16 22:44
你说的都没错Memory是程序在运行过程中使用的内存情况,这个只要查看内存使用情况就行了,windows里任务管理器就有查看内存使用率的功能,所以获取内存情况不是难事吧。Time是程序运行的时间,0的情况有几种可能性,一种就是有一种输出错误程序就不再运行,有些题目不带有递归循环等算法的题目所用的时间不会很久,而且是精确到毫秒,服务器的运行速度比个人电脑快所以耗时在毫秒级以下是正常的。Time也分为墙上时间和cpu时间,在程序开始前记录时间,结束时再记下时间就能计算所用时间了。Lenght是你代码转换为文本后的大小。一般你都是将源程序文件上传,代码文件的大小就是Lenght。GCC有windows版本的,或者你也可以使用GCC标准的编译器MinGW,这些都是32位编译器。
热心网友
时间:2024-10-16 22:40
先帮你翻一个。
Crazy Search
疯狂搜索
Time Limit: 5 Seconds Memory Limit: 32768 KB
时限:5秒 内存限制:32768KB
Many people like to solve hard puzzles some of which may lead them to madness. One such puzzle could be finding a hidden prime number in a given text. Such number could be the number of different substrings of a given size that exist in the text. As you soon will discover, you really need the help of a computer and a good algorithm to solve such a puzzle.
许多人想解决难题,其中一些可能会让他们疯狂。 一个这样的难题就是找到一个隐藏在给定文本中的质数。 这个数字可以是一个存在于这个文本中指定长度的不同子串数。 你需要计算机和一个好的算法来帮助你解决这样一个难题。
Your task is to write a program that given the size, N, of the substring, the number of different characters that may occur in the text, NC, and the text itself, determines the number of different substrings of size N that appear in the text.
你的任务是写这样一个程序:给定子串大小N,文本中不同字符的数量NC,和文本,来确定出现在文本中大小为N的不同子串数目。
As an example, consider N=3, NC=4 and the text "daababac". The different substrings of size 3 that can be found in this text are: "daa", "aab", "aba", "bab", "bac". Therefore, the answer should be 5.
比如:假设N为3,NC为4,文本为"daababac". 这里不同子串大小为3,为"daa","aab", "aba", "bab", "bac". 因此,答案应该是5。
Input
输入
The first line of input consists of two numbers, N and NC, separated by exactly one space. This is followed by the text where the search takes place. You may assume that the maximum number of substrings formed by the possible set of characters does not exceed 16 Millions.
输入的第一行包括两个数字:N和NC,它们之间用一个空格隔开。接下来是搜索所用文本。你假设字符集合构成的子串数量最大不超过1600万
Output
输出
The program should output just an integer corresponding to the number of different substrings of size N found in the given text.
程序应输出一个整数,它是文本中找到的大小为N的不相同子串的数量
This problem contains multiple test cases!
该问题包含多种测试用例!
The first line of
如果帮助到您,请记得采纳为满意答案哈,谢谢!祝您生活愉快! vae.la