http://codeforces.com/contest/1292/problem/C 注意到编号x的边对答案要有贡献,必须和0到x-1的边一起形成一条链,否则x及编号比x大的边都没有贡献。由此,对答案有贡献的边形成了一条链,且这条链的编号是个谷形,即中间编号小,往两边编号变大,编号最大的边在最外 ...
分类:
其他好文 时间:
2020-01-30 11:18:24
阅读次数:
61
Problem: multi-horizon probabilistic forecasting tasks; Propose an end-to-end framework for multi-horizon time series forecasting, with temporal atten ...
分类:
其他好文 时间:
2020-01-30 09:20:26
阅读次数:
151
Linux CentOS7.x安装docker全过程
分类:
系统相关 时间:
2020-01-29 23:23:21
阅读次数:
215
1、cd (change directory)切换到指定目录 2、cp (copy)复制文件或目录 3、find 查找目录及目录下的文件 示例: 4、mkdir (make directory)创建文件夹 5、mv (move)移动或重命名文件(重命名时会删除源文件,cp 不会) 6、pwd (pr ...
分类:
系统相关 时间:
2020-01-29 19:58:16
阅读次数:
95
"原博客" 1. 命令行进入要编译的目录 D:\openGL\assimp 4.1.0\assimp 4.1.0 2. 生成makefile的命令:cmake G “MinGW Makefiles” DCMAKE_CXX_FLAGES= std=c++11 3. make的命令:mingw32 ma ...
分类:
其他好文 时间:
2020-01-29 15:55:35
阅读次数:
65
Anton has a positive integer nn, however, it quite looks like a mess, so he wants to make it beautiful after kk swaps of digits. Let the decimal repre ...
分类:
其他好文 时间:
2020-01-29 12:32:38
阅读次数:
60
#直接修改属性的值# -*- coding:utf-8 -*- class Car(): def __init__(self,make,model,year): self.make = make self.model = model self.year = year self.odometer_re ...
分类:
其他好文 时间:
2020-01-29 01:14:02
阅读次数:
83
题目 Eva would like to make a string of beads with her favorite colors so she went to a small shop to buy some beads. There were many colorful strings o ...
分类:
其他好文 时间:
2020-01-29 01:03:21
阅读次数:
73
配置MySQL主从复制报错 修改配置文件 sudo vim /usr/my.cnf 当时配置从机的时候没改id,应该主机id是1,从机是2 然后重启MySQL服务 问题解决! ...
分类:
数据库 时间:
2020-01-29 00:54:33
阅读次数:
543
1. 为什么需要切片,和数组区别? 数组是定长的,切片是变长的 底层是数组存储 声明 var identifier []type 区分数组是[]中没有数字 var arr = [3]int {1, 2, 3} fmt.Println(arr) var sl = []int {1, 2, 3} fmt ...
分类:
其他好文 时间:
2020-01-28 23:27:31
阅读次数:
84