484 Find Permutation
Problem:
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.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]Solutions:
public class Solution {
public int[] findPermutation(String s) {
int[] down = new int[s.length() + 1];
int count = 0;
for (int i = s.length() - 1; i >= 0; i --) {
if (s.charAt(i) == 'D') {
count ++;
}
else {
down[i+1] = count;
count = 0;
}
}
down[0] = count;
int next = 1;
int j = 0;
while ( j < down.length) {
if (down[j] != 0) {
int repeat = down[j];
down[j] = next + repeat;
next = down[j] + 1;
for (int k = 1; k <= repeat; k ++) {
down[j + k] = down[j] - k;
}
j = j + repeat + 1;
}
else {
down[j++] = next++;
}
}
return down;
}
}Last updated