代码搜索:TLE
找到约 732 项符合「TLE」的源代码
代码结果 732
www.eeworm.com/read/2252/13428
v verilog.v
// generated by newgenasym Thu Oct 23 15:07:18 2008
module tle2037a (m, n1, n2, out, p, vm, vp);
input m;
output n1;
input n2;
output out;
input p;
input vm;
input vp;
www.eeworm.com/read/2252/14848
v verilog.v
// generated by newgenasym Thu Oct 23 15:07:18 2008
module tle2037a (m, n1, n2, out, p, vm, vp);
input m;
output n1;
input n2;
output out;
input p;
input vm;
input vp;
www.eeworm.com/read/233075/4694817
v verilog.v
// generated by newgenasym Thu Mar 22 14:43:11 2001
module tle2037 (\in+ , \in- , n1, n2, out, \v+ , \v- );
inout \in+ ;
inout \in- ;
inout n1;
inout n2;
inout out;
inout \v
www.eeworm.com/read/153975/11997021
asm lchj7.asm
ENTER MACRO
MOV AH,02H
MOV DL,0AH
INT 21H
MOV DL,0DH
INT 21H
ENDM
DATA SEGMENT
S STRUC
NUM DB 2 DUP(?)
NAM DB 20 DUP(0)
TLE DB 15 DUP(' ')
S ENDS
www.eeworm.com/read/153975/11997033
asm lchj7.asm
ENTER MACRO
MOV AH,02H
MOV DL,0AH
INT 21H
MOV DL,0DH
INT 21H
ENDM
DATA SEGMENT
S STRUC
NUM DB 2 DUP(?)
NAM DB 20 DUP(0)
TLE DB 15 DUP(' ')
S ENDS
www.eeworm.com/read/405817/11456401
cpp i hate it(模板改进版).cpp
//套模板,去掉了很多对此题没用的函数和变量
//直接模板会TLE因为节点是动态内存分配的,速度比较慢
//解决方法开个静态的大数组,模拟内存分配
#include
#include
using namespace std;
typedef struct ITREE_NODE {
ITREE_NODE * pLChild, * pRChil
www.eeworm.com/read/388569/8600105
cpp 1276 士兵队列训练问题.cpp
//采用移动 来减少查找第2或3个时的时间消耗
//而且移动后,数据从 n -> n/2 -> n/3 -> n/6 -> n/9 ....
//如果用朴素的比较 ,按照第 i位喊 k来标识,将TLE,此时移动数据才不会超时
#include
#include
using namespace std;
int q[5010];
int inc[2
www.eeworm.com/read/300587/13904144
cpp 1276 士兵队列训练问题.cpp
//采用移动 来减少查找第2或3个时的时间消耗
//而且移动后,数据从 n -> n/2 -> n/3 -> n/6 -> n/9 ....
//如果用朴素的比较 ,按照第 i位喊 k来标识,将TLE,此时移动数据才不会超时
#include
#include
using namespace std;
int q[5010];
int inc[2
www.eeworm.com/read/294553/8218833
txt 2479.txt
完全是bug...居然放错了地方..而且每次只测试一个用例的话也都是对的...如果做过 1050 ,,这个题目是很好理解的..我刚开始用的 o(n^2) 的算法,,tle 了,,其实已经离答案不远了...
过了的代码:
#include
#include
using namespace std;
int num[50002],n;