AT4266 [ABC113B] Palace 水题解*n translation 有 \(n\) 个地方,第 \(i\) 个地方的海拔为 \(H_i\),该地方的温度为 \(T-H_i \times 0.006\)。 求哪个地方的温度离 \(A\) 最近。 solution 我们可以每次输入 \( ...
分类:
其他好文 时间:
2020-11-04 18:23:24
阅读次数:
15
1 #include <bits/stdc++.h> 2 using namespace std; 3 const int mac=4e5+50; 4 int head[mac],vis[mac],dis[mac]; 5 int n,m,num,i,j,t; 6 struct edge{ 7 int ...
分类:
其他好文 时间:
2020-11-04 17:45:08
阅读次数:
15
创建第一个TestNG的例子 1.创建一个TestNG的类 选择项目路径“右键”--NEW--Other 选择TestNG cLass(如果没有这个选项是testng没有配置成功) 2.输入Class 名,点击【Finish】 3编辑代码,运行TestNG 4运行方式 右键--Run As--Tes ...
分类:
其他好文 时间:
2020-11-01 21:56:39
阅读次数:
17
1 若有一个档案的类型与权限资料为『-rwxr-xr--』,请说明其意义为何? 2 如果我的目录为底下的样式,请问testgroup这个群组的成员与其他人(others)是否可以进入本目录? drwxr-xr-- 1 test1 testgroup 5238 Jun 19 10:25 groups/ ...
分类:
其他好文 时间:
2020-11-01 21:29:37
阅读次数:
27
1、按照行数拆分 语法: split -l 行数 文件名 -d -a 3 test_ && ls grep test_ |xargs -n1 -i{} mv {} {}.txt -l 指定拆分每个文件的行数 -d 指定拆分后文件后缀名为数字 -a 指定拆分后文件后缀名的长度 test_ 拆分后文件前 ...
分类:
系统相关 时间:
2020-11-01 20:40:04
阅读次数:
27
C. Friends and Gifts time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output There are nn friend ...
分类:
其他好文 时间:
2020-11-01 10:31:24
阅读次数:
17
下面用到的包已放到文件里需要的可以自己下载 1.select 简单查询命令 #1.查询表中所有的数据 mysql> select * from test.student; #2.查看所有数据之前,先查看数据量 mysql> select count(*) from test.student; #3. ...
分类:
编程语言 时间:
2020-11-01 10:28:49
阅读次数:
16
关于Calendar类使用中遇到的一些问题 1、为什么类似Calender.YEAR之类的字段的使用需要使用get方法来获取? 程序如下: public class Test { public static void main(String[] args) { Calendar cc = Calen ...
分类:
其他好文 时间:
2020-11-01 10:12:04
阅读次数:
12
/* 112. RAND RAND() 返回double类型伪随机数,不可以用于安全和加密 RANDOM_PARTITION(<training_set_size>, <validation_set_size>, <test_set_size>, <seed>) <window_specificat ...
分类:
数据库 时间:
2020-11-01 10:01:28
阅读次数:
18
浅拷贝和深拷贝: 针对对象 深拷贝和浅拷贝只针对像Object和Array这样的复杂对象的,String,Number等简单类型不存在深拷贝。 浅拷贝: 因为浅拷贝只会将对象的各个属性进行依次复制,并不会进行递归复制。在JavaScript中,对于Object和Array这类引用类型值,当从一个变量 ...
分类:
Web程序 时间:
2020-11-01 09:18:45
阅读次数:
30