当前位置:网站首页>LeetCode. Sword finger offer 62 The last remaining number in the circle
LeetCode. Sword finger offer 62 The last remaining number in the circle
2022-07-07 01:45:00 【Stingy Wolf】
List of articles
Title Description
0,1,···,n-1 this n Number in a circle , From numbers 0 Start , Delete the... From this circle every time m A digital ( Delete and count from the next number ). Find the last number left in the circle .
for example ,0、1、2、3、4 this 5 Numbers make a circle , From numbers 0 Start deleting the 3 A digital , Before deleting 4 The numbers in turn are 2、0、4、1, So the last remaining number is 3.
Ideas
This is a famous mathematical problem —— Joseph ring .
The solution is directly posted here ( There is no strict mathematical proof , But it is easier to understand and remember )
Go back in time , Start with the last situation , Push back .
Borrow the picture of a big man :
- The last round ( It is called the n round ), There is only one number left ( be called
x
) when , The total size of the array is 1,x
The subscript of is 0 - n-1 In the round ,
x
Is safe , We draw the whole ring into an infinite straight line , It's easy to know , The starting point of this round , To x, Yes m Number , namely x There is m Number , And what is removed in this round is x The previous number . In this roundx
The subscript of is(m + 0) % 2
( stay x Fill the front with m Number ), Because of the ring , Let's take a model . This round is reserved 2 Number . - n-2 In the round , The first number of the last round was retained , explain n-1 There is m Number , And what is removed in this round is the number in front of this number . Then add m Number , be n-1 The subscript of all numbers in the wheel should be moved to the right m, So in this round
x
The subscript of is ,(((m + 0) % 2) + m) % 3
- …
- The first 1 round , Revert to the original state , We can work out
x
Subscript in initial round
class Solution {
public int lastRemaining(int n, int m) {
// The subscript of the last round
int x = 0;
for (int i = 2; i <= n; i++) {
x = (x + m) % i;
}
return x;
}
}
Formula for : 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], The boundary condition is f ( 1 , m ) = 0 f(1,m)=0 f(1,m)=0
Rigorous mathematical derivation , Reference resources : This is probably the most detailed mathematical derivation of Joseph ring you can find ! - You know
边栏推荐
猜你喜欢
随机推荐
Set WordPress pseudo static connection (no pagoda)
AcWing 1148. 秘密的牛奶运输 题解(最小生成树)
JS es5 peut également créer des constantes?
LeetCode:1175. Prime permutation
AcWing 1141. LAN problem solving (kruskalkruskal finding the minimum spanning tree)
Compile command line terminal swift
Make Jar, Not War
【唯一】的“万字配图“ | 讲透【链式存储结构】是什么?
mongodb查看表是否导入成功
Baidu flying general BMN timing action positioning framework | data preparation and training guide (Part 1)
初识MySQL
AcWing 345. Cattle station solution (nature and multiplication of Floyd)
Yunna | work order management measures, how to carry out work order management
百度飞将BMN时序动作定位框架 | 数据准备与训练指南 (上)
Clickhouse fields are grouped and aggregated, and SQL is queried according to the granularity of any time period
AcWing 904. 虫洞 题解(spfa求负环)
Reptile practice (VI): novel of climbing pen interesting Pavilion
Use nodejs to determine which projects are packaged + released
Long press the button to execute the function
Yunna - work order management system and process, work order management specification