Skip to content

Commit 45c780a

Browse files
committed
modify code
1 parent 7e1dd30 commit 45c780a

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/class166/Code01_SegmentTreeDivideAndConquer1.java renamed to src/class166/Code01_SegmentTreeDivideConquer1.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,15 @@
33
// 线段树分治模版题,java版
44
// 测试链接 : https://loj.ac/p/121
55
// 提交以下的code,提交时请把类名改成"Main"
6-
// 测试平台看似支持java语言,其实无法通过
7-
// 内存过大跳警告,导致验证失败,想通过用C++实现
8-
// 本节课Code01_SegmentTreeDivideAndConquer2文件就是C++的实现
6+
// 测试平台看似支持java语言,其实无法通过,内存过大报警,导致验证失败
7+
// 想通过用C++实现,就是Code01_SegmentTreeDivideConquer2文件
98
// 逻辑完全一样,C++实现可以通过全部测试用例
109

1110
import java.io.IOException;
1211
import java.io.InputStream;
1312
import java.io.OutputStream;
1413

15-
public class Code01_SegmentTreeDivideAndConquer1 {
14+
public class Code01_SegmentTreeDivideConquer1 {
1615

1716
public static int MAXN = 5001;
1817
public static int MAXM = 500001;
File renamed without changes.

0 commit comments

Comments
 (0)