Skip to content

Commit f5ce0a2

Browse files
committed
modify code
1 parent eb04e78 commit f5ce0a2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/class086/Code02_LIS.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
// 如果有多个答案,请输出其中字典序最小的
77
// 字典序设定 :
88
// 每个数字看作是单独的字符,比如120认为比36的字典序大
9+
// 保证从左到右每个数字尽量小
910
// 测试链接 : https://www.nowcoder.com/practice/30fb9b3cab9742ecae9acda1c75bf927
1011
// 请同学们务必参考如下代码中关于输入、输出的处理
1112
// 这是输入输出处理效率很高的写法

src/class086/Code03_Diving.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// 希望能在水下停留的时间最久
88
// 返回最久的停留时间和下标字典序最小的选择工具的方案
99
// 字典序设定 :
10-
// 下标的数值认为是字符串,比如下标120认为比下标36的字典序小
10+
// 下标方案整体构成的字符串保证字典序最小
1111
// 测试链接 : https://www.luogu.com.cn/problem/P1759
1212
// 请同学们务必参考如下代码中关于输入、输出的处理
1313
// 这是输入输出处理效率很高的写法

0 commit comments

Comments
 (0)