332.重新安排行程
力扣题目链接
class Solution {
public:
unordered_map<string, map<string, int>> targets;
bool backtracking(int ticketNum, vector<string>& result) {
if (result.size() == ticketNum + 1) {
return true;
}
for(pair<const string, int>& target : targets[result[result.size() - 1]]) {
if (target.second > 0) {
result.push_back(target.first);
target.second--;
if (backtracking(ticketNum, result)) {
return true;
}
result.pop_back();
target.second++;
}
}
return false;
}
vector<string> findItinerary(vector<vector<string>>& tickets) {
targets.clear();
vector<string> result;
for(const vector<string>& vec : tickets) {
targets[vec[0]][vec[1]]++;
}
result.push_back("JFK");
backtracking(tickets.size(), result);
return result;
}
};
51. N皇后
力扣题目链接
class Solution {
public:
vector<vector<string>> result;
void backtracking(int n, int row, vector<string>& chessboard) {
if (row == n) {
result.push_back(chessboard);
return;
}
for (int col = 0; col < n; ++col) {
if (isValid(row, col, chessboard, n)) {
chessboard[row][col] = 'Q';
backtracking(n, row + 1, chessboard);
chessboard[row][col] = '.';
}
}
}
bool isValid(int row, int col, vector<string>& chessboard, int n) {
for (int i = 0; i < row; i++) {
if (chessboard[i][col] == 'Q') {
return false;
}
}
for (int i = row - 1, j = col - 1; i >= 0 && j >= 0; i--, j--) {
if (chessboard[i][j] == 'Q') {
return false;
}
}
for (int i = row - 1, j = col + 1; i >= 0 && j < n; i--, j++) {
if (chessboard[i][j] == 'Q') {
return false;
}
}
return true;
}
vector<vector<string>> solveNQueens(int n) {
result.clear();
vector<string> chessboard(n, string(n, '.'));
backtracking(n, 0, chessboard);
return result;
}
};
37. 解数独
力扣题目链接
class Solution {
public:
bool backtracking(vector<vector<char>>& board) {
for (int i = 0; i < board.size(); i++) {
for (int j = 0; j < board[0].size(); j++) {
if (board[i][j] == '.') {
for (char k = '1'; k <= '9'; ++k) {
if (isValid(i, j, k, board)) {
board[i][j] = k;
if (backtracking(board)) {
return true;
}
board[i][j] = '.';
}
}
return false;
}
}
}
return true;
}
bool isValid(int row, int col, char val, vector<vector<char>>& board) {
for (int i = 0; i < board[0].size(); ++i) {
if (board[row][i] == val) {
return false;
}
}
for (int i = 0; i < board.size(); ++i) {
if (board[i][col] == val) {
return false;
}
}
int startRow = (row / 3) * 3;
int startCol = (col / 3) * 3;
for (int i = startRow; i < startRow + 3; ++i) {
for (int j = startCol; j < startCol + 3; ++j) {
if (board[i][j] == val) {
return false;
}
}
}
return true;
}
void solveSudoku(vector<vector<char>>& board) {
backtracking(board);
}
};
int main() {
vector<vector<char>> board
{{'.', '6', '.', '.', '9', '.', '.', '8', '2'},
{'.', '9', '.', '7', '.', '.', '.', '4', '6'},
{'.', '.', '8', '.', '.', '1', '.', '.', '5'},
{'9', '3', '.', '.', '5', '.', '.', '.', '.'},
{'8', '.', '5', '.', '7', '6', '4', '2', '9'},
{'2', '.', '6', '1', '.', '.', '3', '5', '8'},
{'1', '.', '.', '.', '.', '4', '2', '9', '.'},
{'4', '.', '.', '.', '1', '2', '.', '.', '3'},
{'6', '2', '.', '.', '3', '.', '.', '.', '.'}};
Solution s1;
s1.solveSudoku(board);
for (const auto& row : board) {
for (const auto& element : row) {
std::cout << element << " ";
}
std::cout << std::endl;
}
}