1718: Construct-the-Lexicographically-Largest-Valid-Sequence
Medium
The constraints are practically asking for
brute-force. You do not need to
find any special tricks; there is no way you TLE
.
Since, we are trying to find the lexicographically
largest answer, realise that for each index, if we start
checking every value from n
to 1
, the
first answer we return will naturally be the
lexicographically largest answer.
Code:
class Solution {
private:
bool recursion (int index, int n, vector<int>& current, vector<int>& used) {
if (index == current.size()) {
return true;
}
if (current[index] != 0) {
return recursion(index+1, n, current, used);
}
for (int i = n; i >= 1; --i) {
if (used[i] == 1) continue;
[index] = i;
current[i] = 1;
used
if (i == 1) {
if (recursion(index+1, n, current, used)) {
return true;
}
} else if (index+i < 2*n-1 && current[index+i] == 0) {
[index+i] = i;
current
if (recursion(index+1, n, current, used)) {
return true;
}
[index+i] = 0;
current}
[index] = 0;
current[i] = 0;
used}
return false;
}
public:
<int> constructDistancedSequence(int n) {
vector<int> current (2*n-1, 0);
vector<int> used (n+1, 0);
vector
(0, n, current, used);
recursionreturn current;
}
};