<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>TLE</title>
	<atom:link href="https://www.aitaocui.cn/tag/262982/feed" rel="self" type="application/rss+xml" />
	<link>https://www.aitaocui.cn</link>
	<description>翡翠玉石爱好者聚集地</description>
	<lastBuildDate>Mon, 28 Nov 2022 16:13:32 +0000</lastBuildDate>
	<language>zh-CN</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.1</generator>

<image>
	<url>https://www.aitaocui.cn/wp-content/uploads/2022/11/taocui.png</url>
	<title>TLE</title>
	<link>https://www.aitaocui.cn</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>TLE(信息学竞赛术语)</title>
		<link>https://www.aitaocui.cn/article/375248.html</link>
					<comments>https://www.aitaocui.cn/article/375248.html#respond</comments>
		
		<dc:creator><![CDATA[疗伤烧肉粽]]></dc:creator>
		<pubDate>Mon, 28 Nov 2022 16:13:32 +0000</pubDate>
				<category><![CDATA[知识]]></category>
		<category><![CDATA[TLE]]></category>
		<guid isPermaLink="false">https://www.aitaocui.cn/?p=375248</guid>

					<description><![CDATA[TLE在信息学竞赛及其训练中是Time Limit Exceeded的缩写，即时间超限，表示你提交的程序运行使用了超出题目限定的时间，故该数据点不得分。通常出现在信息学竞赛在线评测...]]></description>
										<content:encoded><![CDATA[</p>
<article>
<p>TLE在信息学竞赛及其训练中是Time Limit Exceeded的缩写，即时间超限，表示你提交的程序运行使用了超出题目限定的时间，故该数据点不得分。通常出现在信息学竞赛在线评测系统（Online Judge）的错误反馈，是信息学竞赛常用的术语之一。</p>
</article>
<article>
<h1>可能出现的情况</h1>
<p>一般TLE出现的情况有以下几种：</p>
<p>死循环。死循环指程序在循环体内一直执行而不跳出循环。以C++为例，在程序中如果出现了while语句，并且一直符合条件（如while(1){}）且没有跳出语句，就会出现死循环。</p>
<p>算法效率较低（时间复杂度过高）。对于某一数据范围，算法的时间复杂度不能保证在规定时间内完成计算，导致超出题目的时间限制。</p>
<p>常数较大。一般来说，在算法的时间复杂度符合题目要求的情况下，一些程序由于各种原因（如利用了常数巨大的数据结构如平衡树）导致程序的计算量在时间复杂度不变的情况下增大。在某些卡常数的题中就会导致时间超限。</p>
<p>在OJ评测时加入了文件读写。由于无法读取到输入而时间超限。</p>
<h1>其他术语</h1>
<p>AC(Accepted=答案正确)</p>
<p>WA(Wrong Answer=答案错误)</p>
<p>TLE(Time Limit Exceeded=运行超时/时间超限)</p>
<p>CE(Compile Error=编译错误)</p>
<p>RE(Runtime Error=运行时出错)</p>
<p>MLE(Memory Limit Exceeded=内存超限)</p>
<p>PE(Presentation Error=格式错误)</p>
</article>
<div class="mt-3 mb-3" style="max-width: 770px;height: auto;">
                                    </div>
<div class="mt-3 mb-3" style="max-width: 770px;height: auto;">
                                    </div>
<div class="mt-3 mb-3" style="max-width: 770px;height: auto;">
                                    </div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.aitaocui.cn/article/375248.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
