tensorflow-yolov4实施方法 tensorflow-yolov4-tflite YOLOv4: Optimal Speed and Accuracy of Object Detection 文献链接:https://arxiv.org/abs/2004.10934 代码链接:https ...
分类:
其他好文 时间:
2020-05-23 09:19:31
阅读次数:
576
给定若干个三维空间的点 (xi, yi, zi),求一个坐标都为整数的点 P,使得 P 到这些点的最大曼哈顿距离最小。 ...
分类:
其他好文 时间:
2020-05-20 14:26:40
阅读次数:
57
本文记录了如何在Ubuntu/Docker中使用Alexey实现的C版YOLOv4在自己的数据集上进行训练与测试。 论文 : "YOLOv4: Optimal Speed and Accuracy of Object Detection" 代码 : 环境配置 建议使用docker容器配置环境,doc ...
分类:
其他好文 时间:
2020-04-29 20:07:27
阅读次数:
505
题意:给你一个数组a,询问m次,每次返回长度为k的和最大的子序列(要求字典序最小)的pos位置上的数字. 题解:和最大的子序列很简单,排个序就行,但是题目要求字典序最小,那我们在刚开始的时候先记录每个数的位置再排序,然后选出k个最大的数后在对位置从小到大排个序就行了(这题有个坑,第一次排序的时候记得 ...
分类:
其他好文 时间:
2020-04-26 12:31:14
阅读次数:
66
https://codeforces.com/group/5yyKg9gx7m/contest/275848/problem/E E. Optimal Slots The main hall of your residency is open for use by the local communi ...
分类:
其他好文 时间:
2020-04-12 22:44:47
阅读次数:
82
Given 2 lists a and b. Each element is a pair of integers where the first integer represents the unique id and the second integer represents a value. ...
分类:
其他好文 时间:
2020-04-06 10:06:59
阅读次数:
72
Bessie is out in the field and wants to get back to the barn to get as much sleep as possible before Farmer John wakes her for the morning milking. Be ...
分类:
其他好文 时间:
2020-03-30 00:21:16
阅读次数:
101
题意: 题目bala bala一大堆废话,总的意思就是,有n个公主,n个王子,让你去给每一位公主匹配王子。其中每位公主都有心目中的王子,在这个基础上进行匹配。 如果这样就可以让n个公主找到自己的王子,那么就输出“OPTIMAL”,否则输出任意一个 没有找到王子的公主 以及其能够匹配的王子。 代码: ...
分类:
其他好文 时间:
2020-03-26 21:35:57
阅读次数:
83
题目: 传送门 题意: 给你一个凸包,定义 dis(Point a, Point b) 为 a 点和 b 点的曼哈顿距离;定义 f(x) 为选定 x 个点,Point1, Point2 ..... Pointx 的 dis(Point 1, Point 2) + dis(Point 2, Point ...
分类:
其他好文 时间:
2020-02-25 14:48:07
阅读次数:
80
题目链接 https://codeforces.com/contest/685/problem/C 题解 我怎么又还差最后一步的时候放弃了然后往别的方向上想了一小时才发现这个思路能做…… 首先二分答案,转化为所有点半径为$mid$的曼哈顿距离区域内是否有交。 考虑二维问题,显然可以用曼哈顿转切比雪夫 ...
分类:
其他好文 时间:
2020-02-20 20:07:11
阅读次数:
64