题目 Atcoder 思路 代码 #include <iostream> #include <cstring> #include <algorithm> using namespace std; const int N = 100010; int n, w[4][N], to[N], st[N]; ...
分类:
其他好文 时间:
2021-06-02 15:31:22
阅读次数:
0
Tensorflow绪论 有句话说的好:“工欲善其事 必先利其器”。 为什么选择Tensorflow2 Tensorflow目前发布了两个版本:1.x和2.0,通过对这两个版本的使用,相较于Tensorflow1.x,有以下特点: (1)简单易用: Tensorflow2去除了冗余的接口,并将计算过 ...
分类:
其他好文 时间:
2021-06-02 15:30:53
阅读次数:
0
题目 Atcoder 思路 代码 #include <iostream> #include <algorithm> #include <cstring> using namespace std; const int N = 100010, M = N << 1; int n, m; int h[N] ...
分类:
其他好文 时间:
2021-06-02 15:30:41
阅读次数:
0
文章推荐: https://www.anquanke.com/post/id/98096 https://www.cnblogs.com/-qing-/p/10623583.html 推荐平台: http://www.dnslog.cn //不需要登录账户注册 速度快一点 简单测试推荐 http:/ ...
分类:
其他好文 时间:
2021-06-02 15:23:17
阅读次数:
0
1、单目运算符&为取址运算符,其作用是获取对象的地址,生成指向对象的指针,与其说是获取地址,不如说是生成指针。对象地址的转换说明为%p,其中的p为pointer的首字母。 #include <stdio.h> int main(void) { int n; double x; int a[3]; p ...
分类:
编程语言 时间:
2021-06-02 15:15:47
阅读次数:
0
from fastapi.staticfiles import StaticFiles app.mount(path='/coronavirus/',app=StaticFiles(directory=' ./coronavirus/static', name='static')) ...
操作表单 表单本身也是一个DOM树,使用表单的目的就是为了提交信息 获得表单 <form action="post"> <p> <span>用户名:</span> <input type="text" id="username"> </p> <p> <span>性别:</span> <input t ...
分类:
Web程序 时间:
2021-06-02 14:56:51
阅读次数:
0
题链 定义贝尔数$B_n=\sum _{k=1}{n}S(n,k)$,其中$S(n,k)$为第二类斯特林数,我们有$B_{n+1}=\sum_{i=0}^{n}B_i*\tbinom{n}{i}$, ? $\frac{B_{n+1}}{n!}=\sum_{i=1}^n\frac{1}{i!}*\fr ...
分类:
其他好文 时间:
2021-06-02 14:48:16
阅读次数:
0
修改github的配置文件后, 服务端 ( http://localhost:3344/master/application-dev.yml )能刷新,客户端( http://localhost:3355/configInfo )不能刷新。 做法:cmd执行: curl -X POST http:/ ...
分类:
其他好文 时间:
2021-06-02 14:45:44
阅读次数:
0