当前位置:网站首页>LeetCode. 剑指offer 62. 圆圈中最后剩下的数
LeetCode. 剑指offer 62. 圆圈中最后剩下的数
2022-07-06 17:52:00 【抠脚的大灰狼】
题目描述
0,1,···,n-1这n个数字排成一个圆圈,从数字0开始,每次从这个圆圈里删除第m个数字(删除后从下一个数字开始计数)。求出这个圆圈里剩下的最后一个数字。
例如,0、1、2、3、4这5个数字组成一个圆圈,从数字0开始每次删除第3个数字,则删除的前4个数字依次是2、0、4、1,因此最后剩下的数字是3。
思路
这是一个著名的数学问题 —— 约瑟夫环。
这里直接贴出解法(没有严格的数学证明,但比较容易理解和记忆)
用时光倒流法,从最后的情况开始,往回推。
借用一位大佬的图:
- 最后一轮(称之为第n轮),只剩一个数字(称之为
x
)时,数组总大小为1,x
的下标为0 - n-1轮中,
x
是安全的,我们把整个环拉成一条无限长的直线,则容易知道,这一轮的起点,到x,有m个数,即x前面有m个数,且这一轮中移除的是x前面的那个数。那么该轮中x
的下标为(m + 0) % 2
(在x前面补上m个数),由于有环,我们取个模。这一轮保留了2个数。 - n-2轮中,上一轮的第一个数被保留了下来,说明n-1轮的第一个数前面有m个数,且该轮移除的是这个数前面的那个数。则在整个数组前面补上m个数,则n-1轮中所有数的下标都要往右移m,所以该轮中
x
的下标为,(((m + 0) % 2) + m) % 3
- …
- 第1轮,还原到初始状态,就能求出
x
在初始轮中的下标
class Solution {
public int lastRemaining(int n, int m) {
// 最后一轮的下标
int x = 0;
for (int i = 2; i <= n; i++) {
x = (x + m) % i;
}
return x;
}
}
公式为: f ( n , m ) = [ f ( n − 1 , m ) + m ] f(n,m) = [f(n-1,m) + m] % n f(n,m)=[f(n−1,m)+m],边界条件为 f ( 1 , m ) = 0 f(1,m)=0 f(1,m)=0
严谨的数学推导,参考:这或许是你能找到的最详细约瑟夫环数学推导! - 知乎
边栏推荐
- Realize incremental data synchronization between MySQL and ES
- Send template message via wechat official account
- C语言实例_5
- C语言实例_2
- Dark horse notes - create immutable sets and streams
- Dynamic planning idea "from getting started to giving up"
- Gazebo的安装&与ROS的连接
- Neon Optimization: an optimization case of log10 function
- Taro2.* 小程序配置分享微信朋友圈
- Body mass index program, entry to write dead applet project
猜你喜欢
2022 Google CTF SEGFAULT LABYRINTH wp
Dark horse notes - exception handling
LeetCode:1175. Prime permutation
Typical problems of subnet division and super network construction
[case sharing] basic function configuration of network loop detection
Dynamic planning idea "from getting started to giving up"
Byte P7 professional level explanation: common tools and test methods for interface testing, Freeman
2022 Google CTF SEGFAULT LABYRINTH wp
[Niuke] [noip2015] jumping stone
ESP Arduino (IV) PWM waveform control output
随机推荐
NEON优化:log10函数的优化案例
[100 cases of JVM tuning practice] 05 - Method area tuning practice (Part 2)
Taro 小程序开启wxml代码压缩
Spark TPCDS Data Gen
Force buckle 1037 Effective boomerang
table表格设置圆角
Atomic in golang, and cas Operations
黑马笔记---异常处理
实现mysql与ES的增量数据同步
身体质量指数程序,入门写死的小程序项目
第三方跳转网站 出现 405 Method Not Allowed
字节P7专业级讲解:接口测试常用工具及测试方法,福利文
golang中的WaitGroup实现原理
斗地主游戏的案例开发
Yunna - work order management system and process, work order management specification
AI 从代码中自动生成注释文档
Taro2.* applet configuration sharing wechat circle of friends
Your cache folder contains root-owned files, due to a bug in npm ERR! previous versions of npm which
golang中的atomic,以及CAS操作
前置机是什么意思?主要作用是什么?与堡垒机有什么区别?