一.主页(http://www.pby0212.top/) 二.FM(http://fm.pby0212.top/) 三.TV(http://tv.pby0212.top/) 四.心情博客(http://blog.pby0212.top/) 五.离数云(http://cloud.pby0212.to ...
分类:
Web程序 时间:
2020-02-13 15:15:14
阅读次数:
93
"POJ 1753 Flip Game" 题意 在一个4x4的棋盘上放有16枚一面黑一面白的棋子。 每次操作时,你可以选择一枚棋子,然后将这枚棋子以及它上下左右相邻的棋子(如果有的话)翻面(颜色反转)。 给定棋盘初始的样子,请问在一些操作后,是否可以将所有棋子都变成一个颜色?如果可以的话,最少需要多 ...
分类:
其他好文 时间:
2020-02-13 09:17:49
阅读次数:
57
1,背诵单词:loaf 一个面包 applicable可应用 (实施 )的 motion 运动,提议 diploma毕业文凭 ,学位证书 contrast 对比,对照 trend倾向 ,趋势 honorable可敬的 transition转变,变迁 appendix附录,附属物 objection ...
分类:
其他好文 时间:
2020-02-13 00:12:57
阅读次数:
66
三个模块 1,game.exe,三个方法,控制台输入指令('A','B','R')分别控制三个方法的调用; 2,WGDll.dll,要注入到game进程中的dll文件; 3,myconsole.exe,用来注入dll文件的程序; 先开启game进程,然后用myconsole把dll注入到game,d ...
(使用前请新建一个game.txt和data.txt) #include<stdlib.h> #include<stdio.h> #include<time.h> //suiji #include<string.h> #include<windows.h> //SLEEP函数 #include<io ...
分类:
其他好文 时间:
2020-02-11 17:35:38
阅读次数:
108
运动图像检测 基于背景减法 "目标跟踪,背景分割器:KNN、MOG2和GMG" "Basic motion detection and tracking with Python and OpenCV" " 使用背景减除进行目标检测" "用 OpenCV 实现多目标追踪(C++/Python)" 通过 ...
分类:
其他好文 时间:
2020-02-10 22:51:09
阅读次数:
88
两种压缩方式:Lzma (默认的), Lz4 四种加载方法: 1,从内存中加载:LoadfromMemory()内存 2,从本地加载:LoadFromFile 3,从本地或服务器加载www(下面会提到) 4,从服务器端加载unityWebRequest 加载依赖资源包 1,获得总的依赖配置(stre ...
分类:
其他好文 时间:
2020-02-10 09:14:35
阅读次数:
108
"题目" 双周赛最后一题 题意:从起始点开始走,每次只能往前走一步,或者往后走一步,或者直接跳到数值一样的格子。求跳到最后一个格子的最小步数 题解: 一开始以为是动态规划,后来发现用BFS更加简单。动态规划也是可以解的。 ...
分类:
其他好文 时间:
2020-02-09 20:11:57
阅读次数:
72
Flip game is played on a rectangular 4x4 field with two-sided pieces placed on each of its 16 squares. One side of each piece is white and the other o ...
分类:
其他好文 时间:
2020-02-08 22:02:58
阅读次数:
86
题目如下: Given an array of integers arr and an integer d. In one step you can jump from index i to index: i + x where: i + x < arr.length and 0 < x <= d. ...
分类:
其他好文 时间:
2020-02-08 16:04:58
阅读次数:
64