【转】ACM各种WA的说明及可能的原因

转载地址:http://blog.csdn.net/qq_15015129/article/details/52738184

1、答案错误 —— wrong answer 就是最常见的。这个没办法,基本是程序有些细节的点没有考虑到。

2、运行错误 —— Runtime Error 大致两种情况

1、是数组开太小,要存的数据太大,数组调大就OK了。 
2、是数组发生越界操作,基本上是程序执行时访问到了不该访问的地方,程序问题了。

3、格式错误 —— presentation error 非常接近AC了。空格或者回车多输或者少输了。看题意再检查下就没问题了。

4、时间超限 —— Time Limit Exceeded (TLE) 这个字面意思就知道。程序设计的算法执行速度不够啊。要优化算法或者重新设计程序

5、标星号的正确 —– 被OJ怀疑为抄袭的代码。 跟前面提交的代码非常相似 .后面跟的ID表示抄袭的以前的那程序的运行ID

6、内存超限 —— Memory Limit Exceeded (MLE) 数组开太大了,或者程序中出现死循环,不断申请程序内存而使其崩溃

PS:在循环或者递归中定义变量有时会有影响。(bfs遇到过一次)

7、编译错误 —– Compile Error (CE): 编译出错. 点击该链接(Compile Error)以查看详细的编译错误. 这是可以直接纠正的。

8、等待 Queuing: 等待评判.

9、等待重判 reQuerying 等待重新判定

10、输出超限 Output Limit Exceeded (OLE): 程序输出的内容过多,超出预期。

时间: 2024-10-29 19:12:31

【转】ACM各种WA的说明及可能的原因的相关文章

编程之美初赛第一场--焦距

题目1 : 焦距 时间限制:2000ms 单点时限:1000ms 内存限制:256MB 描写叙述 一般来说.我们採用针孔相机模型,也就是觉得它用到的是小孔成像原理. 在相机坐标系下,一般来说,我们用到的单位长度.不是"米"这种国际单位,而是相邻像素的长度.而焦距在相机坐标系中的大小,是在图像处理领域的一个很重要的物理量. 如果我们已经依据相机參数,得到镜头的物理焦距大小(focal length),和相机胶片的宽度(CCD width),以及照片的横向分辨率(image width),

hdu 2853 Assignment KM算法

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2853 Last year a terrible earthquake attacked Sichuan province. About 300,000 PLA soldiers attended the rescue, also ALPCs. Our mission is to solve difficulty problems to optimization the assignment of t

POJ 3380 最大流

Paratroopers Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u Submit Status Practice POJ 3308 Appoint description:  System Crawler  (2014-10-14) Description It is year 2500 A.D. and there is a terrible war between the forc

Codeforces Round 239 Div 1

都怪自己太懒了 这段时间比赛参加了大部分,但是一直都没写题解,趁这几天没事,计划把这段时间的题解都补上. 上一次比赛(248)终于升到了div1,所以从这次开始就开始写div1了. A. Triangle There is a right triangle with legs of length a and b. Your task is to determine whether it is possible to locate the triangle on the plane in such

【HDU 5818多校】Joint Stacks

用两个栈模拟,并保存每个点的时间戳.每次合并的时候记录合并时的时间戳mcnt和此时的topa和topb记做ta.tb. 每次pop的时候,如果栈的top的时间戳大于mcnt,则普通地pop,否则就在两个栈ta和tb下面找时间戳最大且还没pop掉的.然后用bj[时间戳]来标记已经pop了. #include <cstdio> #include <cstring> #define N 100005 using namespace std; struct node{ int id,v;

hdu 4983 Goffi and GCD(欧拉函数)

Problem Description Goffi is doing his math homework and he finds an equality on his text book: gcd(n−a,n)×gcd(n−b,n)=nk. Goffi wants to know the number of (a,b) satisfy the equality, if n and k are given and 1≤a,b≤n. Note: gcd(a,b) means greatest co

webservice(一) 初涉

Exception in thread "main" com.sun.xml.internal.ws.model.RuntimeModelerException: runtime modeler error: Wrapper class com.wa.jaxws.SayHello is not found. Have you run APT to generate them?  at com.sun.xml.internal.ws.model.RuntimeModeler.getCla

洛谷 P2488 [SDOI2011]工作安排

题目描述 你的任务是制定出一个产品的分配方案,使得订单条件被满足,并且所有员工的愤怒值之和最小.由于我们并不想使用Special Judge,也为了使选手有更多的时间研究其他两道题目,你只需要输出最小的愤怒值之和就可以了. 输入输出格式 输入格式: 输出格式: 仅输出一个整数,表示最小的愤怒值之和. 输入输出样例 输入样例#1: 2 3 2 2 2 1 1 0 0 0 1 1 2 1 10 1 2 1 6 输出样例#1: 24 说明 一看,哇,修车,美食节,直接拆点,跑费用流,光荣T掉,还WA了

poj 2356 Find a multiple (剩余类,抽屉原理)

Find a multiple Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 6965   Accepted: 3052   Special Judge Description The input contains N natural (i.e. positive integer) numbers ( N <= 10000 ). Each of that numbers is not greater than 15000