cf gym 链接 A. Kick Start 简单签到题。 code: #include<bits/stdc++.h> #define pi pair<int,int> #define f first #define s second using namespace std; const stri ...
分类:
其他好文 时间:
2020-11-21 11:48:03
阅读次数:
4
KDnuggets2018年的一个博客发起了一项投票:数据科学中最好用的Python IDE是什么?本次调查共有1900多人参与,调查结果如下图所示。前5个选择是:Jupyter,57%PyCharm,35%Spyder,27%Visual Studio Code,21%Sublime Text,1 ...
分类:
编程语言 时间:
2020-11-21 11:47:21
阅读次数:
7
登录页面开发 调整项目目录结构如下 其中 src\router\router.js export default [ { // 命名路由,在router-link中,to属性 :to="{name: 'login'}" path: '/', name: 'login', // 路由名称 // rou ...
分类:
其他好文 时间:
2020-11-20 12:11:52
阅读次数:
8
什么是round-trip? Any double-precision floating-point number can be identified with at most 17 significant decimal digits. This means that if you convert ...
分类:
编程语言 时间:
2020-11-20 12:04:39
阅读次数:
12
题意 cf 做法 令$l_{u,v}((u,v)\in E)\(为边\)(u,v)$的边权 令$x_{u,v}\(为对边\)(u,v)$的增量 令$X$为总增量限制 令$d_i$为一组增量序列${x}$对图造成影响后,从$s$到$i$的最短路径 可以发现$d_s$是什么并不重要,我们将其写成线性规划 ...
分类:
其他好文 时间:
2020-11-20 11:51:00
阅读次数:
6
给当前页面的最外层div class 加样式 /deep/ html, .home { position: fixed; height: 100%; width: 100%; background-color: #658ea9 !important; } 这是效果 ...
分类:
其他好文 时间:
2020-11-20 11:36:45
阅读次数:
25
首先新建一个users应用,编写这个应用的models类。 from django.contrib.auth.models import AbstractUser class UserProfile(AbstractUser): ''' 用户 ''' name=models.CharField(ma ...
分类:
其他好文 时间:
2020-11-19 12:52:05
阅读次数:
10
题意:你要带着你的喵咪一起去旅行,你的喵在星期$1,4,7$吃喵粮$x$,在星期$2,6$吃喵粮$y$,在星期$3,5$吃喵粮$z$,你只有$a$个$x$,$b$个$y$,$c$个$z$,一旦吃完旅行就结束了,问你选择星期几出发能使旅行的天数最长. 题解:这已经是这个星期第三次碰到这种idea的题了 ...
分类:
其他好文 时间:
2020-11-19 12:46:14
阅读次数:
9
1 #include<bits/stdc++.h> 2 #define ll long long 3 #define INF 1e17 4 using namespace std; 5 const int N = 2e5 + 10; 6 ll n, k; 7 ll a[N]; 8 9 bool ch ...
分类:
其他好文 时间:
2020-11-17 12:50:15
阅读次数:
11
1、hbase数据flush过程 1)当MemStore数据达到阈值(默认是128M,老版本是64M),将数据刷到硬盘,将内存中的数据删除,同时删除HLog中的历史数据; 2)并将数据存储到HDFS中; 3)在HLog中做标记点。 2、数据合并过程 1)当数据块达到4块,hmaster将数据块加载到 ...
分类:
其他好文 时间:
2020-11-17 11:47:51
阅读次数:
3