博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Leetcode: Find Permutation(Unsolve lock problem)
阅读量:6432 次
发布时间:2019-06-23

本文共 2246 字,大约阅读时间需要 7 分钟。

By now, you are given a secret signature consisting of character 'D' and 'I'. 'D' represents a decreasing relationship between two numbers, 'I' represents an increasing relationship between two numbers. And our secret signature was constructed by a special integer array, which contains uniquely all the different number from 1 to n (n is the length of the secret signature plus 1). For example, the secret signature "DI" can be constructed by array [2,1,3] or [3,1,2], but won't be constructed by array [3,2,4] or [2,1,3,4], which are both illegal constructing special string that can't represent the "DI" secret signature.On the other hand, now your job is to find the lexicographically smallest permutation of [1, 2, ... n] could refer to the given secret signature in the input.Example 1:Input: "I"Output: [1,2]Explanation: [1,2] is the only legal initial spectial string can construct secret signature "I", where the number 1 and 2 construct an increasing relationship.Example 2:Input: "DI"Output: [2,1,3]Explanation: Both [2,1,3] and [3,1,2] can construct the secret signature "DI", but since we want to find the one with the smallest lexicographical permutation, you need to output [2,1,3]Note:The input string will only contain the character 'D' and 'I'.The length of input string is a positive integer and will not exceed 10,000

还没研究:

For example, given IDIIDD we start with sorted sequence 1234567

Then for each k continuous D starting at index i we need to reverse [i, i+k] portion of the sorted sequence.

IDIIDD1234567 // sorted1324765 // answer
1 public class Solution { 2     public int[] findPermutation(String s) { 3         int n = s.length(), arr[] = new int[n + 1];  4         for (int i = 0; i <= n; i++) arr[i] = i + 1; // sorted 5         for (int h = 0; h < n; h++) { 6             if (s.charAt(h) == 'D') { 7                 int l = h; 8                 while (h < n && s.charAt(h) == 'D') h++; 9                 reverse(arr, l, h); 10             }   11         }   12         return arr;13     }   14 15     void reverse(int[] arr, int l, int h) {16         while (l < h) {17             arr[l] ^= arr[h];18             arr[h] ^= arr[l];19             arr[l] ^= arr[h];20             l++; h--;21         }   22     }23 }

 

转载地址:http://spxga.baihongyu.com/

你可能感兴趣的文章
corner2
查看>>
我见过的几种类型的员工(转)
查看>>
web前端的十种jquery特效及源码下载
查看>>
poj 3414 Pots (bfs+线索)
查看>>
Binary search
查看>>
http://jingyan.baidu.com/article/08b6a591f0fafc14a9092275.html
查看>>
MySQL查询数据表的Auto_Increment(自增id)
查看>>
java多线程系类:JUC集合:01之框架
查看>>
【Linux】 源码安装make命令详解,避免踩坑
查看>>
数据库中间表插入乱序
查看>>
[Python爬虫] 之四:Selenium 抓取微博数据
查看>>
使用OPENROWSET爆破SQL Server密码
查看>>
Mac_安装Homebrew以及Maven
查看>>
eclipse web开发Server配置
查看>>
曹政--互联网搜索老师傅
查看>>
MUI框架开发HTML5手机APP(一)--搭建第一个手机APP(转)
查看>>
linux下使用 du查看某个文件或目录占用磁盘空间的大小
查看>>
[wp7软件]wp7~~各种视频播放器下载大全
查看>>
Java工程师必知之事 —— 如何定义自己的职业路线?
查看>>
代码质量与规范,那些年你欠下的技术债
查看>>