前三题随便写,D题是一道dfs的水题,但当时没有找到规律,直接卡到结束 A - Kth Term / Time Limit: 2 sec / Memory Limit: 1024 MB Score : 100100 points Problem Statement Print the KK-th e ...
分类:
其他好文 时间:
2020-03-18 20:19:45
阅读次数:
68
本系统根据人体姿势判断图中人物是否在睡觉 一、数据爬取 从百度图片上爬取到1000张以上的人体非睡觉图片和睡觉姿势的图片 二、数据抽取 对每一张图片进行关键点检测,将数据存储至csv文件,并添加标记位0(没有睡觉)和1(睡觉)。由于决定睡觉姿态的关键点为 key_points = ['top_hea ...
分类:
其他好文 时间:
2020-03-16 09:15:01
阅读次数:
88
地图交互interaction 关于map的方法: //添加地图交互 map.addInteraction(interaction) //删除地图交互 map.removeInteraction(interaction) 创建矢量图层并添加到地图容器中: //创建矢量图层并添加到地图容器中 var ...
分类:
其他好文 时间:
2020-03-15 14:58:16
阅读次数:
70
1.添加依赖 <!-- 仪表盘监控 --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId ...
分类:
编程语言 时间:
2020-03-14 14:28:38
阅读次数:
79
题意~~反向~~翻译: A tree with N points, with point 1 as the root, and the tree points have edge weights. Then there are M There are three types of operation ...
分类:
其他好文 时间:
2020-03-13 13:06:54
阅读次数:
55
最接近原点的K个点。题意是给一些点的坐标(以二维数组表示)和一个数字K。求距离最靠近原点的前K个点。例子, Example 1: Input: points = [[1,3],[-2,2]], K = 1 Output: [[-2,2]] Explanation: The distance betw ...
分类:
其他好文 时间:
2020-03-13 13:00:40
阅读次数:
59
今天用Koa2写了后端接口对数据库进行CRUD操作,补一些数据库相关的操作语句 SELECT * FROM <表名> SELECT * FROM <表名> WHERE <条件表达式> SELECT * FROM students WHERE id=1 SELECT * FROM students W ...
分类:
数据库 时间:
2020-03-11 01:20:57
阅读次数:
107
static void asdkMyGroupCTest(void) { ads_name ent; ads_point pt; if(RTNORM != acedEntSel(NULL,ent,pt)) { return; } AcDbObjectId id; acdbGetObjectId(id ...
分类:
数据库 时间:
2020-03-10 23:26:16
阅读次数:
96
There are nn points on a coordinate axis OXOX . The ii -th point is located at the integer point xixi and has a speed vivi . It is guaranteed that no ...
分类:
其他好文 时间:
2020-03-09 10:31:36
阅读次数:
79