/** * File: permutations_ii.cpp * Created Time: 2023-04-24 * Author: krahets (krahets@163.com) */ #include "../utils/common.hpp" /* Backtracking algorithm: Permutation II */ void backtrack(vector &state, const vector &choices, vector &selected, vector> &res) { // When the state length equals the number of elements, record the solution if (state.size() == choices.size()) { res.push_back(state); return; } // Traverse all choices unordered_set duplicated; for (int i = 0; i < choices.size(); i++) { int choice = choices[i]; // Pruning: do not allow repeated selection of elements and do not allow repeated selection of equal elements if (!selected[i] && duplicated.find(choice) == duplicated.end()) { // Attempt: make a choice, update the state duplicated.emplace(choice); // Record selected element values selected[i] = true; state.push_back(choice); // Proceed to the next round of selection backtrack(state, choices, selected, res); // Retract: undo the choice, restore to the previous state selected[i] = false; state.pop_back(); } } } /* Permutation II */ vector> permutationsII(vector nums) { vector state; vector selected(nums.size(), false); vector> res; backtrack(state, nums, selected, res); return res; } /* Driver Code */ int main() { vector nums = {1, 1, 2}; vector> res = permutationsII(nums); cout << "Input array nums = "; printVector(nums); cout << "All permutations res = "; printVectorMatrix(res); return 0; }