I - Coins Time Limit: 2 sec / Memory Limit: 1024 MB Score : 100100 points Problem Statement Let NN be a positive odd number. There are NN coins, numbe ...
分类:
其他好文 时间:
2019-01-17 00:36:58
阅读次数:
240
在MongoDB中有一个非常神奇的符号 "$" "$" 在 update 中 加上关键字 就 变成了 修改器 其实 "$" 字符 独立出现也是有意义的 , 我起名叫做代指符 首先看个例子: 还是这个Collection 现在把 "score": 100 的 test_list 里面的 2 改为 9 ...
分类:
数据库 时间:
2019-01-16 21:41:15
阅读次数:
188
在MongoDB中有一个非常神奇的符号 "$" "$" 在 update 中 加上关键字 就 变成了 修改器 其实 "$" 字符 独立出现也是有意义的 , 我起名叫做代指符 首先看个例子: 还是这个Collection 现在把 "score": 100 的 test_list 里面的 2 改为 9 ...
分类:
数据库 时间:
2019-01-16 18:06:04
阅读次数:
235
E - Knapsack 2 Time Limit: 2 sec / Memory Limit: 1024 MB Score : 100100 points Problem Statement There are NN items, numbered 1,2,…,N1,2,…,N. For each ...
分类:
其他好文 时间:
2019-01-16 00:14:01
阅读次数:
288
0、摘要 (1)为了解决什么问题,提出什么方法,得到什么结论? 问题:例如,为了提高系统的准确率,为了降低系统复杂度,为了提高系统自适应能力等 方法:例如,通过降维,特征选择的方法,减少无用数据,从提高系统准确度,并且降低系统复杂度 结论:找到一个评价指标,例如,accuracy, F1 score ...
分类:
其他好文 时间:
2019-01-14 00:23:19
阅读次数:
262
C - Vacation Time Limit: 2 sec / Memory Limit: 1024 MB Score : 100100 points Problem Statement Taro's summer vacation starts tomorrow, and he has deci ...
分类:
其他好文 时间:
2019-01-10 19:59:39
阅读次数:
148
A - Frog 1 Time Limit: 2 sec / Memory Limit: 1024 MB Score : 100100 points Problem Statement There are NN stones, numbered 1,2,…,N1,2,…,N. For each ii ...
分类:
其他好文 时间:
2019-01-09 23:27:26
阅读次数:
312
包sklearn.metrics sklearn.metrics包含评分方法、性能度量、成对度量和距离计算 分类结果度量 参数大多是y_true和y_pred accuracy_score:分类准确度 condusion_matrix:分类混淆矩阵 classification_report:分类报 ...
分类:
其他好文 时间:
2019-01-08 15:16:10
阅读次数:
177
1 练习题和sql语句 2 3 基础sql语句 4 5 统计每个学生的总分。 6 统计出学号和总分 7 select s_id , sum(s_score) as zf from score group by s_id 8 9 上表结果和stuent做join连接 10 11 select stu.... ...
分类:
其他好文 时间:
2019-01-08 15:00:19
阅读次数:
380
1、zadd key score1 value1 score2 value2 添加元素 2、zrem key value1 value2 .. 删除集合中的元素 3、zremrangebyscore key min max 按照socre来删除元素,删除score在[min,max]之间的 4、zr ...
分类:
其他好文 时间:
2019-01-06 21:55:58
阅读次数:
253