LeetCode: 60. Permutation Sequence(Medium)
1. 原题链接
https://leetcode.com/problems/permutation-sequence/description/
2. 题目要求
给出整数 n和 k ,k代表从1到n的整数所有排列序列中的第k个序列,返回String类型的第k个序列
3. 解题思路
首先我们要知道这个序列是按照什么规律排列下去的,假如此时n=4,k= 21,n=4时所有的排列如下:
可以看出 n=4 时,一共有 4!=24种排列组合。
每一个数字开头各有 6 种排列组合,因此我们可以把同一数字开头的排列看作同一组,一共 4 组。
我们进一步探寻排列的规律。
(1) 第一步: 确定第一个数字
k=21,也就是要我们找到第19个排列组合,这个组合的第一个数字我们使用 (21-1)/(4-1)! = 3 ,3对应未使用数字中的第四位数字“4”,所以第一位数字为4。
将 4 从未使用数字中去除,还剩:1 2 3
解释一下为什么要 21-1:因为java进行整出运算时不会进行四舍五入,只保留整数不分。18/6 和 21/6 的结果都是3,按照每一个数字开头有 6 种排列方式,第 18和第 21 都是以 4开头。但实际上第 18 个排列以 “3” 开头,第 21 个以 “4” 开头。所以使用k-1来避免这个问题。
(2)第二步:确定第二个数字
我们已经确定了第一位数字,也就是第一位数字是 4 ,第4组。从上面的排列组合可以看出,第二位存在三种数字,每一个数字都存在两次(蓝框圈出),因此第二位数字相同的又可以看成同一组。
k= 20%(4-1)! =20%6 =2, 2/(4-2)! = 2/2 =1, 1对应未使用数字中的第二位数字 “1”,因此第二位数字为2。
将2从未使用数字中去掉,还剩:1 3
(3)第三步:确定第三个数字
第三个数字只存在两种可能了,k= 2%(4-2)! =2%2 =0,0/(4-3)!= 0/1 =0,0对应未使用数字中的第一位数字 “1”,因此第三位数字为1
将1从未使用数字中去掉,还剩:3
(4)第四步:确定第四个数字
k=0%(4-4)! = 0%1 = 0,0/(4-4)!=0/1 =0 ,0对应第一位数字,此时未使用数字中的第一位数字“3”,因此第四位数字为3.
所以第 21 个排列组合为:4213
4. 代码实现
import java.util.ArrayList;
import java.util.List; public class PermutationSequence60 {
public static void main(String[] args) {
System.out.println(getPermutation(4,21));
System.out.println(19/6);
}
public static String getPermutation(int n,int k){
int pos = 0;
List<Integer> numbers = new ArrayList<>();
int[] factorial = new int[n+1];
StringBuilder sb = new StringBuilder(); int sum = 1;
factorial[0] = 1;
// 保存不同整数的阶乘
for(int i=1; i<=n; i++){
sum *= i;
factorial[i] = sum;
}
// factorial[] = {1, 1, 2, 6, 24, ... n!} // 未使用数字列表
for(int i=1; i<=n; i++){
numbers.add(i);
} k--; for(int i = 1; i <= n; i++){
System.out.println(factorial[n-i]);
int index = k/factorial[n-i];
sb.append(String.valueOf(numbers.get(index)));
numbers.remove(index);
k =k%factorial[n-i];
} return String.valueOf(sb);
}
}
LeetCode: 60. Permutation Sequence(Medium)的更多相关文章
- leetCode 60.Permutation Sequence (排列序列) 解题思路和方法
The set [1,2,3,-,n] contains a total of n! unique permutations. By listing and labeling all of the p ...
- LeetCode:60. Permutation Sequence,n全排列的第k个子列
LeetCode:60. Permutation Sequence,n全排列的第k个子列 : 题目: LeetCode:60. Permutation Sequence 描述: The set [1, ...
- 60. Permutation Sequence(求全排列的第k个排列)
The set [1,2,3,…,n] contains a total of n! unique permutations. By listing and labeling all of the p ...
- LeetCode: 61. Rotate List(Medium)
1. 原题链接 https://leetcode.com/problems/rotate-list/description/ 2. 题目要求 给出一个链表的第一个结点head和正整数k,然后将从右侧开 ...
- LeetCode:11. ContainerWithWater(Medium)
原题链接:https://leetcode.com/problems/container-with-most-water/description/ 题目要求:给定n个非负整数a1,a2,...,an ...
- [LeetCode] 60. Permutation Sequence 序列排序
The set [1,2,3,…,n] contains a total of n! unique permutations. By listing and labeling all of the p ...
- Leetcode 60. Permutation Sequence
The set [1,2,3,-,n] contains a total of n! unique permutations. By listing and labeling all of the p ...
- leetcode 60. Permutation Sequence(康托展开)
描述: The set [1,2,3,…,n] contains a total of n! unique permutations. By listing and labeling all of t ...
- [LeetCode]60. Permutation Sequence求全排列第k个
/* n个数有n!个排列,第k个排列,是以第(k-1)/(n-1)!个数开头的集合中第(k-1)%(n-1)!个数 */ public String getPermutation(int n, int ...
随机推荐
- C#图解教程读书笔记(第2章 C#编程概述)
这章主要是一个对于C#程序的概括解释 和C/C++不同,不是用include声明引用的头文件,而是通过using的方式,声明引用的命名空间. 命名和C/C++类似,并且也是区分大小写的,这件事情在VB ...
- phonegap 捕获图片,音频,视屏 api capture
一. capture Api 简单介绍 capture 对象用于获取视屏,音频和图像,它是一个全局对象,通过 navigator.device.capture 来访问 方法: capture.capt ...
- 牛客网多校训练第一场 A - Monotonic Matrix(Lindström–Gessel–Viennot lemma)
链接: https://www.nowcoder.com/acm/contest/139/A 题意: 求满足以下条件的n*m矩阵A的数量模(1e9+7):A(i,j) ∈ {0,1,2}, 1≤i≤n ...
- 【[HNOI2006]超级英雄】
看到楼下有大佬说了网络流做法,来给大佬配个代码 我们只有我可能都觉得如果不动态加边的话\(dinic\)可能跑不了这种需要中途退出的二分图匹配 正当我准备去敲匈牙利的时候突然想到这个题可以二分啊 于是 ...
- [19/04/08-星期一] 多线程_线程的优先级(Priority) 和 守护线程(Daemon)
一.概念 1. 处于就绪状态的线程,会进入“就绪队列”等待JVM来挑选. 2. 线程的优先级用数字表示,范围从1到10,一个线程的缺省优先级是5. 3. 使用下列方法获得或设置线程对象的优先级. in ...
- 使用ByPropertyName进行管道传输
管道参数绑定的两种方式: 可通过 help command -full查看 不同:简单讲ByPropertyName可以使B的多个参数被同时使用 使用ByPropertyName进行管道传输: 建立一 ...
- ASP.NET Web API编程——文件上传
首先分别介绍正确的做法和错误的做法,然后分析他们的不同和错误之处,以便读者在实现此功能时可避开误区 1正确的做法 public class AvaterController : BaseApiCont ...
- Mac python3.5 + Selenium 开发环境配置
一. python 3.5 1. 下载 2. Mac默认为2.7,所以这里主要介绍如何将系统Python默认修改为3.5. 原理: 1)Mac自带的python环境在: python2.7: /Sys ...
- 实例:接口并发限流RateLimiter
需求:接口每秒最多只能相应1个请求 1.创建 全局类对象 import com.google.common.util.concurrent.RateLimiter; import org.spring ...
- HDU 2102 A计划(两层地图加时间限制加传送门的bfs)
传送门: http://acm.hdu.edu.cn/showproblem.php?pid=2102 A计划 Time Limit: 3000/1000 MS (Java/Others) Me ...