当前位置:网站首页>leecode学习笔记-约瑟夫问题
leecode学习笔记-约瑟夫问题
2022-07-04 13:23:00 【喜欢历史的工科生】
class Solution {
public int lastRemaining(int n, int m) {
int ans = 0;
// 最后一轮剩下2个人,所以从2开始反推
for (int i = 2; i <= n; i++) {
ans = (ans + m) % i;
}
return ans;
}
}
- 解释
帮助理解
问题1: 假设我们已经知道11个人时,胜利者的下标位置为6。那下一轮10个人时,胜利者的下标位置为多少?
答: 其实吧,第一轮删掉编号为3的人后,之后的人都往前面移动了3位,胜利这也往前移动了3位,所以他的下标位置由6变成3。问题2: 假设我们已经知道10个人时,胜利者的下标位置为3。那下一轮11个人时,胜利者的下标位置为多少? 答:
这可以看错是上一个问题的逆过程,大家都往后移动3位,所以f ( 11 , 3 ) = f ( 10 , 3 ) + 3
f(11,3)=f(10,3)+3f(11,3)=f(10,3)+3。不过有可能数组会越界,所以最后模上当前人数的个数,f ( 11 , 3
) = ( f ( 10 , 3 ) + 3 ) % 11
f(11,3)=(f(10,3)+3)%11f(11,3)=(f(10,3)+3)%11
最后只剩下一个元素,假设这个最后存活的元素为 num, 这个元素最终的的下标一定是0 (因为最后只剩这一个元素),
所以如果我们可以推出上一轮次中这个num的下标,然后根据上一轮num的下标推断出上上一轮num的下标,
直到推断出元素个数为n的那一轮num的下标,那我们就可以根据这个下标获取到最终的元素了。推断过程如下:
首先最后一轮中num的下标一定是0, 这个是已知的。
那上一轮应该是有两个元素,此轮次中 num 的下标为 (0 + m)%n = (0+3)%2 = 1; 说明这一轮删除之前num的下标为1;
再上一轮应该有3个元素,此轮次中 num 的下标为 (1+3)%3 = 1;说明这一轮某元素被删除之前num的下标为1;
再上一轮应该有4个元素,此轮次中 num 的下标为 (1+3)%4 = 0;说明这一轮某元素被删除之前num的下标为0;
再上一轮应该有5个元素,此轮次中 num 的下标为 (0+3)%5 = 3;说明这一轮某元素被删除之前num的下标为3;
…因为我们要删除的序列为0-n-1, 所以求得下标其实就是求得了最终的结果。比如当n 为5的时候,num的初始下标为3,
所以num就是3,也就是说从0-n-1的序列中, 经过n-1轮的淘汰,3这个元素最终存活下来了,也是最终的结果。总结一下推导公式:(此轮过后的num下标 + m) % 上轮元素个数 = 上轮num的下标
边栏推荐
- Xcode abnormal pictures cause IPA packet size problems
- 第十六章 字符串本地化和消息字典(二)
- leetcode:6109. 知道秘密的人数【dp的定义】
- LVGL 8.2 Draw label with gradient color
- 如何配和弦
- Leetcode T47: 全排列II
- LVGL 8.2 Menu
- What is the difference between Bi financial analysis in a narrow sense and financial analysis in a broad sense?
- Scratch Castle Adventure Electronic Society graphical programming scratch grade examination level 3 true questions and answers analysis June 2022
- 架构方面的进步
猜你喜欢
开发中常见问题总结
自动控制原理快速入门+理解
Leetcode 61: rotating linked list
(1) The standard of performance tuning and the correct posture for tuning - if you have performance problems, go to the heapdump performance community!
(1)性能调优的标准和做好调优的正确姿势-有性能问题,上HeapDump性能社区!
codeforce:C. Sum of Substrings【边界处理 + 贡献思维 + 灵光一现】
The failure rate is as high as 80%. What are the challenges on the way of enterprise digital transformation?
Classify boost libraries by function
Visual Studio调试方式详解
Chapter 17 process memory
随机推荐
LVGL 8.2 Sorting a List using up and down buttons
First experience of ViewModel
失败率高达80%,企业数字化转型路上有哪些挑战?
opencv3.2 和opencv2.4安装
Digi XBee 3 RF: 4个协议,3种封装,10个大功能
redis 日常笔记
Yyds dry goods inventory # solve the real problem of famous enterprises: continuous maximum sum
【云原生】我怎么会和这个数据库杠上了?
Query optimizer for SQL optimization
LVGL 8.2 Menu
一种架构来完成所有任务—Transformer架构正在以一己之力统一AI江湖
Ultrasonic distance meter based on 51 single chip microcomputer
[information retrieval] experiment of classification and clustering
为什么国产手机用户换下一部手机时,都选择了iPhone?
Expose Ali's salary and position level
Chapter 17 process memory
Practical puzzle solving | how to extract irregular ROI regions in opencv
自动控制原理快速入门+理解
Solutions to the problems of miui12.5 red rice k20pro using Au or povo2
软件测试之测试评估