码迷,mamicode.com
首页 >  
搜索关键字:candy sharing game    ( 6263个结果
Number Game - 记忆化搜索+ 递推求博弈论
传送门 以前博弈论都是靠找规律,这个题给我了新的思路,就是如果说博弈论里面的操作是对数字操作,那么可以采用递推的形式 先初始化$\sqrt(n)$的数据,然后有种杜教筛的思想,对于$n > N$时,才回去继续查找,而在求dp[n / j]时,继续查看,n / j 是否 < N 设dp[i], 如果d ...
分类:其他好文   时间:2020-07-01 11:03:07    阅读次数:54
0045. Jump Game II (H)
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
001_Linux常用命令之ls命令
1. 认识Linux系统目录结构 /bin 可执行文件所在目录 /media 挂载设备媒体,u盘,光驱等 /mnt 该目录主要是为了让用户挂在别的文件系统(挂在自己的u盘) /usr unix system resources,庞大和复杂的目录,很多应用会安装到此目录(/usr/local-用户自己 ...
分类:系统相关   时间:2020-06-29 00:30:39    阅读次数:74
【题解】「CF1373B」01 Game
这题好水,就是简单的模拟+字符串。 \(\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
Go Proverbs
https://github.com/go-proverbs/go-proverbs.github.io Go Proverbs Simple, Poetic, Pithy Don't communicate by sharing memory, share memory by communicat ...
分类:其他好文   时间:2020-06-28 00:41:05    阅读次数:498
CodeForces - 469A I Wanna Be the Guy
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
Educational Codeforces Round 90 (Rated for Div. 2) B. 01 Game
题目链接: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
享元模式
名称: 享元模式(Flyweight Pattern) 问题: The flyweight design pattern enables use sharing of objects to support large numbers of fine-grained objects efficient ...
分类:其他好文   时间:2020-06-26 14:39:14    阅读次数:66
6263条   上一页 1 ... 10 11 12 13 14 ... 627 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!