自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

@fei

土鳖啃铁牛~to be continue~

  • 博客(628)
  • 资源 (11)
  • 问答 (3)
  • 收藏
  • 关注

原创 Codeforces Round 911 C. Anji‘s Binary Tree

cf 911 c

2024-01-05 12:40:32 923

原创 cf Codeforces Round 888 E. Nastya and Potions

有n种药,每种药有可能使用其它几种已有的药进行合成且不会自己合成自己。给你c1到cn标识每种药的购买加个,其中有k种药p1到pk表示这k个药已经有了,而且无限供应。接下是n行,每行表示合成第i种药需要的其它药的下标。很简单很基础的记忆化搜索,每种药要么使用其它药合成,要么直接购买即可。最后输出n个整数,输出每种药获得的最少花销。

2023-08-25 00:35:26 214

原创 cf Educational Codeforces Round 141 E. Game of the Year

codeforce 1783e

2023-04-16 18:04:23 452 1

原创 cf Educational Codeforces Round 141 D. Different Arrays

cf 141 d different arrays

2023-03-16 22:15:42 503

原创 cf Educational Codeforces Round 141 C. Yet Another Tournament

cf 141

2023-02-08 09:55:13 340

原创 cf Educational Codeforces Round 134 E. Prefix Function Queries

cf 134 e kmp自动机

2023-01-20 20:12:50 1662

原创 cf Educational Codeforces Round 134 D. Maximum AND

cf 134d

2023-01-16 16:45:49 556

原创 cf Educational Codeforces Round 134 C. Min-Max Array Transformation

cf 134 c

2023-01-15 14:05:36 276

原创 cf Educational Codeforces Round 133 E. Swap and Maximum Block

cf 133 e

2022-09-17 11:11:35 207

原创 cf Educational Codeforces Round 133 D. Chip Move

cf 133 d dp

2022-09-13 17:37:04 177

原创 cf Educational Codeforces Round 133 C. Robot in a Hallway

cf 133 c dp

2022-09-13 16:51:19 221

原创 tensorflow 源码编译记录

tensorflow源码编译记录

2022-06-19 11:37:58 235 1

原创 洛谷 p6175 无向图的最小环问题

floyed算法

2022-06-12 16:47:26 335

原创 C 编程记录

c语言记录

2022-06-03 13:45:50 98

原创 cf Educational Codeforces Round 127 E. Preorder

原题:E. Preordertime limit per test2 secondsmemory limit per test512 megabytesinputstandard inputoutputstandard outputYou are given a rooted tree of 2n−12^n−12n−1 vertices. Every vertex of this tree has either 0 children, or 2 children. All leaves

2022-05-29 14:49:44 145

原创 cf Educational Codeforces Round 127 D. Insert a Progression

原题:D. Insert a Progressiontime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputYou are given a sequence of nintegers a1,a2,…,ana_1,a_2,…,a_na1​,a2​,…,an​. You are also given x integers 1,2,…,x.Yo

2022-05-29 13:45:50 147

原创 cf Educational Codeforces Round 127 C. Dolce Vita

原题:C. Dolce Vitatime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputTurbulent times are coming, so you decided to buy sugar in advance. There are n shops around that sell sugar: the i−thi-thi−th s

2022-05-29 12:44:45 176

原创 tvm tutorial (1.2)

紧接着上一篇实现了array packing对矩阵乘法进行优化的策略,接下来记录cache写回优化(block writing throung caching)cache的写回说头比较多,有两种情况,一种叫write back,另一种是write through,详细内容可以参考下面链接:https://blog.csdn.net/xingzhe22222/article/details/81988101矩阵C的写回操作也是跳跃式的,不利于...

2022-02-09 10:46:42 194

原创 tvm tutorial (1.1)

接着上次 tensor_expr_get_started.py 没记录完的部分继续剩下的代码如下,给出的样例是Nvidia GPU设备端的代码run_cuda = Falseif run_cuda: # Change this target to the correct backend for you gpu. For example: cuda (NVIDIA GPUs), # rocm (Radeon GPUS), OpenCL (opencl). tgt_gpu = tv

2022-02-08 13:26:09 1384

原创 tvm tutorials 记录(1)

第一篇文章记录了relay_quick_start.py文件中的内容,主要是展示了如何使用relay构建网络结构图,以及调用什么接口可以实现对网络进行编译优化并部署。接下来看一下tensor_expr_get_started.py这个文件,文件900多行,注释占了绝大部分,提供这个demo的作者人很实在。作者上来来了一段解释,原文如下:In this tutorial we will turn our attention to how TVM works with Tensor Expression

2022-02-03 19:32:01 1074

原创 tvm tutorials 记录(0)

个人学习tvm的笔记在tutorial目录下面有个get_started的目录,里面是很基础使用教程,就像目录说的一样,get start代码中的注释很多写的很清楚了,这里主要用于记录并扩充relay_quick_start完整源码如下,原始代码中使用的resnet18,这里我替换成了mobilenet,因为是在cpu上跑,使用Mobilenet会快一些。这里代码的目的就是加载一个mobilenet的网络模型,然后对网络模型进行计算图优化,得到优化后的图结构,并运行这个优化后的图。

2022-01-31 15:10:32 1923

原创 yolov3 论文笔记

原始论文中废话太多,文章主要参考csdn以及知乎上等博主的优秀博文总结得到参考:https://blog.csdn.net/qq_37541097/article/details/81214953https://zhuanlan.zhihu.com/p/76802514https://zhuanlan.zhihu.com/p/337383661backboneyolo v3的backbone 使用的是darknet53,如下图:其中每个convolutional层是由 conv + bn +

2021-10-05 14:26:16 870

原创 cf Educational Codeforces Round E. Boring Segments

原题:E. Boring Segmentstime limit per test3 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputYou are given nsegments on a number line, numbered from 1 to n. The i-th segments covers all integer points from li to ri

2021-09-21 17:31:28 140

原创 cf Educational Codeforces Round D. Say No to Palindromes

原题:D. Say No to Palindromestime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputLet’s call the string beautiful if it does not contain a substring of length at least 2 , which is a palindrome. Reca

2021-09-21 17:02:08 124

原创 yolov2 论文笔记

摘要部分real-time object detection system that can detect over 9000 object categories.之所以叫yolo 9000 是因为可以检测9000个目标。Using a novel, multi-scale training method the same YOLOv2 model can run at varying sizes, offering an easy tradeoff between speed and accura

2021-09-21 13:44:33 358

原创 yolo v1论文笔记

yolov1参考这篇文章https://zhuanlan.zhihu.com/p/46691043摘要we frame object detection as a regression problem to spatially separated bounding boxes and associated class probabilities.作者将目标检测问题变成一个回归问题,包括bounding boxes的计算和目标类别的概率。A single neural network predic

2021-09-09 10:11:18 224

原创 SSD 论文笔记

摘要We present a method for detecting objects in images using a single deep neural network. Our approach, named SSD, discretizes the output space of bounding boxes into a set of default boxes over different aspect ratios and scales per feature map location.

2021-09-02 16:11:35 738

原创 fpn 论文笔记

摘要Feature pyramids are a basic component in recognition systems for detecting objects at different scales. But recent deep learning object detectors have avoided pyramid representations, in part because they are compute and memory intensive. In this paper

2021-08-31 13:23:38 658

原创 makefile && shell 记录

以 caffe中的Makefile为例,学习一下makefile的使用流程导入Makefile.config文件ifeq ($(wildcard $(CONFIG_FILE)),)$(error $(CONFIG_FILE) not found. See $(CONFIG_FILE).example.)endifinclude $(CONFIG_FILE)$(info info $(CONFIG_FILE))这部分是将Makefile.config的内容导入进来wildcard是扩展通配

2021-08-29 23:00:08 405

原创 resnet 论文笔记

摘要Deeper neural networks are more difficult to train. We present a residual learning framework to ease the training of networks that are substantially deeper than those used previously. We explicitly reformulate the layers as learning residual functions w

2021-08-29 16:43:10 859

原创 洛谷 P4516 潜入行动

原题:外星人又双叒叕要攻打地球了,外星母舰已经向地球航行!这一次,JYY 已经联系好了黄金舰队,打算联合所有 JSOIer 抵御外星人的进攻。在黄金舰队就位之前,JYY 打算事先了解外星人的进攻计划。现在,携带了监听设备的特工已经秘密潜入了外星人的母舰,准备对外星人的通信实施监听。外星人的母舰可以看成是一棵 n 个节点、 n−1 条边的无向树,树上的节点用 1,2,⋯ ,n 编号。JYY 的特工已经装备了隐形模块,可以在外星人母舰中不受限制地活动,可以神不知鬼不觉地在节点上安装监听设备。如果在节点

2021-08-07 00:28:14 135

原创 洛谷 P2014 选课

原题:题目描述在大学里每个学生,为了达到一定的学分,必须从很多课程里选择一些课程来学习,在课程里有些课程必须在某些课程之前学习,如高等数学总是在其它课程之前学习。现在有 N 门功课,每门课有个学分,每门课有一门或没有直接先修课(若课程 a 是课程 b 的先修课即只有学完了课程 a,才能学习课程 b)。一个学生要从这些课程里选择 M 门课程学习,问他能获得的最大学分是多少?输入格式第一行有两个整数 N , M 用空格隔开。( 1≤N≤300 , 1≤M≤300 )接下来的 N 行,第 I+1 行包含

2021-07-30 21:22:07 170

原创 洛谷 P3574 FAR-FarmCraft

原题:在一个叫做比特村的小村庄中,有n−1条路连接着这个村庄中的全部n个房子。每两个房子之间都有一条唯一的通路。这些房子的编号为1至nnn。1号房子属于村庄的管理员比特安萨尔。为了提升村庄的科技使用水平,n台电脑被快递到了比特安萨尔的房子。每个房子都应该有一台电脑,且分发电脑的任务就落在了比特安萨尔的肩上。比特村的居民一致同意去玩农场物语这个游戏的最新快照版,而且好消息是他们很快就要得到他们最新的高配置电脑了。比特安萨尔将所有电脑都装在了他的卡车上,而且他准备好完成这个艰巨的任务了。他的汽油恰

2021-06-26 16:13:17 147

原创 poj 1463 Strategic game

原题:Strategic gameTime Limit: 2000MS Memory Limit: 10000KTotal Submissions: 13192 Accepted: 5971DescriptionBob enjoys playing computer games, especially strategic games, but sometimes he cannot find the solution fast enough and then he is very sad. N

2021-06-13 09:59:04 123

原创 hdoj 2196 Computer

原题:A school bought the first computer some time ago(so this computer’s id is 1). During the recent years the school bought N-1 new computers. Each new computer was connected to one of settled earlier. Managers of school are anxious about slow functioning

2021-06-13 09:42:29 142

原创 洛谷 1352 没有上司的舞会

** 原题:**题目描述某大学有 nnn 个职员,编号为 1…n1\ldots n1…n。他们之间有从属关系,也就是说他们的关系就像一棵以校长为根的树,父结点就是子结点的直接上司。现在有个周年庆宴会,宴会每邀请来一个职员都会增加一定的快乐指数 rir_iri​,但是呢,如果某个职员的直接上司来参加舞会了,那么这个职员就无论如何也不肯来参加舞会了。所以,请你编程计算,邀请哪些职员可以使快乐指数最大,求最大的快乐指数。输入格式输入的第一行是一个整数 nnn。第 222 到第 (n+1)(n +

2021-06-13 08:29:17 160

原创 first集&follow集&select集

first集:一些符号和定义:文法四元组G=(VT, VN, S, P)VT (vocabulary terminated): 终结符集合VN(vocabulary not terminated):非终结符集合S(start):开始符号P(production):产生式ε:表示空#:表示输入结束符,类似EOF→∗\stackrel{*}{\rightarrow}→∗:表示经过0次至多此推导句子:短语:句型:一般大写字母表示非终结符,小写字母表示终结符。文法式一套有限的规则,可以创

2021-06-12 18:54:12 815

原创 cf Educational Codeforces Round 106 E. Chaotic Merge

原题:E. Chaotic Mergetime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputYou are given two strings x and y, both consist only of lowercase Latin letters. Let |s| be the length of string s.Let’s cal

2021-05-25 00:03:18 133

原创 cf Educational Codeforces Round 106 D. The Number of Pairs

原题:D. The Number of Pairstime limit per test2 secondsmemory limit per test512 megabytesinputstandard inputoutputstandard outputYou are given three positive (greater than zero) integers c, d and x.You have to find the number of pairs of positive

2021-05-23 23:47:12 134

原创 cf Educational Codeforces Round 106 C. Minimum Grid Path

原题:C. Minimum Grid Pathtime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputLet’s say you are standing on the XY-plane at point (0,0) and you want to reach point (n,n).You can move only in two dir

2021-05-23 22:55:29 121

BRIEF算法论文 和CenSurE特征匹配 论文

第一篇论文BRIEF: Binary Robust Independent Elementary Features 第二篇论文CenSurE: Center Surround Extremas for Realtime Feature Detection and Matching

2018-03-18

FAST特征点检测算法的两篇论文

Machine learning for high-speed corner detection FASTER and better: A machine learning approach to corner detection

2018-03-08

opengl开源库 freeglut2.8

OpenGL的新开源库FreeGLUT2.8版本,其中头文件以及静态链接库和动态链接库已经编译好,只需要放到ide对应的文件夹当中即可使用

2018-01-24

《应用随机过程概率模型导论》第十版答案 答案

introduction to probability models 出到第11版,教师手册和习题答案在外网上也搜不到,只有第十版可以凑合看~ 没有办法0积分上传,但也比经管之家那地方强多了

2018-01-08

Rust语言程序设计1.14版本

Rust语言的官方中文文档,最新的1.14版本(2017年2月)

2017-02-01

一天了解深度学习

台湾大学教授写的300页的ppt,偶然间在网上看见~~写的很生动有趣,又非常好理解,适合作为入门学习

2016-12-12

SyntaxHighlighter 3.0.83

SyntaxHighlighter 3.0.83 版本,在官网上面下载费劲,好不容易找到,放到csdn上面,供大家使用学习。

2016-05-24

刘汝佳 基础数据结构+高级数据结构 pdf

刘汝佳基础数据结构和高级数据结构的pdf讲稿

2016-05-01

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除