题目描述 In a village called Byteville, there are houses connected with N-1 roads. For each pair of houses, there is a unique way to get from one to anoth ...
分类:
其他好文 时间:
2020-04-07 18:17:31
阅读次数:
69
一 场景问题继续使用IDC Model,在此Model增加user字段,用于记录添加当前数据的用户: class IDC(models.Model): user = models.ForeignKey(User, on_delete=models.CASCADE, editable=False, n ...
分类:
其他好文 时间:
2020-03-27 21:38:02
阅读次数:
160
Almost every home will have a corridor, and will also choose a suitable corridor decoration lights to arrange, which will eliminate the tension brough ...
分类:
其他好文 时间:
2020-03-20 17:22:39
阅读次数:
93
Pascal是英伟达公司于2016年推出的新一代GPU架构,本文摘抄自英伟达Pascal架构官方白皮书 ...
分类:
其他好文 时间:
2020-03-15 19:18:06
阅读次数:
118
```#include #include #include #include #include using namespace std;const int MAXN = 250;int N; //点的个数,点的编号从1到Nbool Graph[MAXN][MAXN];int Match[MAXN];... ...
分类:
其他好文 时间:
2020-03-07 13:27:56
阅读次数:
67
题:https://vjudge.net/problem/URAL-1960 题意:给你一个长度为 n 的字符串 s,下标从 1 开始; 输出 n 个数,第 i 个数表示 1~i 内有多少个本质不同的回文串; #include<iostream> #include<cstdio> #include< ...
分类:
其他好文 时间:
2020-02-29 22:14:19
阅读次数:
99
"URAL 1996" 题意: "URAL 1996" 给两个长度分别为$n, m$的字节串$A,B$,$A$串的最后一位可以修改,代价为$1$,求使得$B$串为$A$串字串的最小代价 Solution : 因为$A$串只有最后最后一位可以修改,所以可以用KMP求出可能匹配的位置,然后计算每个位置的 ...
分类:
其他好文 时间:
2020-02-11 13:15:13
阅读次数:
54
论文阅读论文链接:https://arxiv.org/pdf/1903.07293.pdf tensorflow版代码Github链接:https://github.com/Jhy1993/HAN 介绍视频:https://www.bilibili.com/video/av53418944/ 参考博 ...
分类:
其他好文 时间:
2020-01-25 10:27:17
阅读次数:
392
Given an integer n, generate all structurally unique BST's (binary search trees) that store values 1 ... n. Example: Input: 3 Output: [ [1,null,3,2], ...
分类:
其他好文 时间:
2020-01-08 12:43:14
阅读次数:
72
IFC4x0资源层一共包括21个资源块 IfcActorResource(角色资源)IfcApprovalResource(审批资源)IfcConstraintResource(约束资源)IfcCostResource(成本资源)IfcDateTimeResource(日期时间资源)IfcExter ...
分类:
其他好文 时间:
2020-01-06 14:43:15
阅读次数:
66