Jump Game II (H) 题目 Given an array of non-negative integers, you are initially positioned at the first index of the array. Each element in the array r ...
分类:
其他好文 时间:
2020-06-30 09:14:16
阅读次数:
59
1. 认识Linux系统目录结构 /bin 可执行文件所在目录 /media 挂载设备媒体,u盘,光驱等 /mnt 该目录主要是为了让用户挂在别的文件系统(挂在自己的u盘) /usr unix system resources,庞大和复杂的目录,很多应用会安装到此目录(/usr/local-用户自己 ...
分类:
系统相关 时间:
2020-06-29 00:30:39
阅读次数:
74
这题好水,就是简单的模拟+字符串。 \(\sf Translation\) 给定一个 $01$ 串,如果 $0$ 出现的次数和 $1$ 出现的次数的最小值是奇数,输出 DA ,否则输出 NET 多测。 \(\sf Solution\) 法一 简单模拟+字符串,如果你是刚刚学字符串的萌新,推荐先看看 ...
分类:
其他好文 时间:
2020-06-28 22:51:24
阅读次数:
117
难度命中算法制excel表格 package com.miracle9.game.algorithm; import com.miracle9.game.algorithm.FishServerSuanfa.FISH_TYPE; import java.util.Objects; import ja ...
分类:
编程语言 时间:
2020-06-28 22:07:51
阅读次数:
80
There is a game called "I Wanna Be the Guy", consisting of n levels. Little X and his friend Little Y are addicted to the game. Each of them wants to ...
分类:
其他好文 时间:
2020-06-27 21:41:11
阅读次数:
90
生成树顾名思义是对原图提取一些边来生成一棵树。 例题: CF840B Leha and another game about graph 题解 ...
分类:
其他好文 时间:
2020-06-27 16:00:29
阅读次数:
35
题目链接:https://codeforces.com/contest/1373/problem/B 题意 给出一个二进制串 $s$,Alica 和 Bob 每次可以选择移去 $s$ 中的一个 $10$ 或 $01$,无法选择者视为输掉游戏,判断最终谁会胜利。($1 \le t \le 1000, ...
分类:
其他好文 时间:
2020-06-26 23:51:15
阅读次数:
55
https://leetcode-cn.com/problems/jump-game/ 给定一个非负整数数组,你最初位于数组的第一个位置。 数组中的每个元素代表你在该位置可以跳跃的最大长度。 判断你是否能够到达最后一个位置。 示例 1: 输入: [2,3,1,1,4]输出: true解释: 我们可以 ...
分类:
其他好文 时间:
2020-06-26 12:37:45
阅读次数:
63
Game of Life (M) 题目 According to the Wikipedia's article: "The Game of Life, also known simply as Life, is a cellular automaton devised by the British ...
分类:
其他好文 时间:
2020-06-26 10:53:37
阅读次数:
48
目录 前言 What is a game engine? 游戏引擎破蛋史——游戏界的工业革命 游戏引擎的发展 3D引擎的真正诞生 游戏引擎的商品化 引擎大飞跃 后话 前言 接锅辣~ 前几天Nova常务组的组长(也就是我大哥)来找我,问我是不是大多数课程结课了。我心里一惊!哎呀,不会是独游的集训要开始 ...
分类:
其他好文 时间:
2020-06-25 21:53:15
阅读次数:
51