Problem Description Astronomers often examine star maps where stars are represented by points on a plane and each star has Cartesian coordinates. Let ...
分类:
编程语言 时间:
2019-02-19 13:08:58
阅读次数:
146
相关链接 论文地址:https://arxiv.org/abs/1901.08043 论文代码:https://github.com/xingyizhou/ExtremeNet 概述 ExtremeNet是今年(2019)1月23号挂在arxiv上的目标检测论文,是至今为止检测效果最好的单阶段目标检 ...
分类:
Web程序 时间:
2019-02-19 11:39:47
阅读次数:
442
<题目链接> 题目大意: 给出范围为(0, 0)到(n, n)的整点,你站在(0,0)处,问能够看见几个点。 解题分析:很明显,因为 N (1 ≤ N ≤ 1000) ,所以无论 N 为多大,(0,1),(1,1),(1,0)这三个点一定能够看到,除这三个点以外,我们根据图像分析可得,设一个点的坐标 ...
分类:
其他好文 时间:
2019-02-12 09:14:51
阅读次数:
171
Given two rectangles and the coordinates of two points on the diagonals of each rectangle,you have to calculate the area of the intersected part of tw ...
分类:
其他好文 时间:
2019-02-08 01:09:14
阅读次数:
161
我们有一个由平面上的点组成的列表 points。需要从中找出 K 个距离原点 (0, 0) 最近的点。 (这里,平面上两点之间的距离是欧几里德距离。) 你可以按任何顺序返回答案。除了点坐标的顺序之外,答案确保是唯一的。 示例 1: 示例 2: 提示: ...
分类:
其他好文 时间:
2019-02-05 18:17:59
阅读次数:
229
Codeforces Round #535 (Div. 3) 题目总链接:https://codeforces.com/contest/1108 太懒了啊~好久之前的我现在才更新,赶紧补上吧,不能漏掉了。 A. Two distinct points 题意: 给出两个区间的左右边界,输出两个数,满足 ...
分类:
其他好文 时间:
2019-02-05 11:48:14
阅读次数:
151
环境准备 docker-compose 文件 version: "3" services: db: image: oscarfonts/h2 container_name: zeebe_db ports: - "1521:1521" - "81:81" monitor: image: camunda ...
分类:
其他好文 时间:
2019-02-04 14:07:13
阅读次数:
228
k means是一种非监督聚类算法 0.initial 1.select centroids randomly 2.assign points 3.update centroids 4.reassign points 5.update centroids 6.reassign points 7.it ...
分类:
其他好文 时间:
2019-02-02 10:19:40
阅读次数:
225
最近项目一直会出现时间转换报错,一直不知道是什么问题??? 代码如下: 如果是上述代码,那么在多线程环境下,你可能会收到如标题所示的错误。 解决办法 1、建议在每个方法中都new一个新的SimpleDateFormat对象,这样子就可以避免这种问题。 2、也可以使用保存线程局部变量的ThreadLo ...
分类:
编程语言 时间:
2019-01-31 10:33:14
阅读次数:
213