gpt4 book ai didi

c++ - 更好的多函数调用设计

转载 作者:行者123 更新时间:2023-11-30 03:13:35 25 4
gpt4 key购买 nike

我为在线法官网站编写了一个数独验证器。 https://www.urionlinejudge.com.br/judge/en/problems/view/1383

我的解决方案非常适合 9 格数独,方法是使用位集验证每一列行和数独 3x3 block 是否包含 1-9 的数字,并翻转数字索引处的每一位。

enter image description here

但是,我多次调用 ValidateOneBlock() 指定迭代器范围。

我的直觉告诉我,这种方法从根本上来说可能更好。我如何通过多次调用 ValidateOneBlock() 而不使用大的 if 来改进(如果可能)我的代码?

#include <iostream>
#include <sstream>
#include <bitset>

namespace Constants
{
constexpr int ROW_COL_SIZE = 9;
const std::string STR_YES = "SIM"; //yes in Portuguese
const std::string STR_NO = "NAO"; //no in Portuguese
}

template<unsigned int N>
class Sudoku
{
private:
int m_matrix[N][N] {{0}};
public:
void ReadRows();
bool IsValid() const;
private:
bool ValidateOneBlock(const int& minRowIndex, const int& maxRowIndex, const int& minColIndex, const int& maxColIndex) const;
};

template<unsigned int N>void Sudoku<N>::ReadRows()
{
for(unsigned int row{0}; row<N; row++)
{
static std::string line;
std::getline(std::cin, line);
std::istringstream issline(line);

int readnum {0};
for(unsigned int i{0}; i<N; i++)
{
issline >> readnum;
m_matrix[row][i] = readnum;
}
}
}

template<unsigned int N>bool Sudoku<N>::IsValid() const
{
//9bit default ctor all zeroes, 000000000
std::bitset<N> bitRow[N];
std::bitset<N> bitCol[N];
for(unsigned int i{0}; i<N; i++)
{
for(unsigned int j{0}; j<N; j++)
{
bitRow[i].flip(m_matrix[i][j]-1); //bitset index is 0 not 1.
bitCol[i].flip(m_matrix[j][i]-1);
}
if(!bitRow[i].all() || !bitCol[i].all()) {
return false;
}
}

/* What ValidateOneBlock() does is verify numbers 1-9 within the Sudoku blocks. These are the indexes
0-0 0-1 0-2 | 0-3 0-4 0-5 | 0-6 0-7 0-8
1-0 1-1 1-2 | 1-3 1-4 1-5 | 1-6 1-7 1-8
2-0 2-1 2-2 | 2-3 2-4 2-5 | 2-6 2-7 2-8
---------------------------------------
3-0 3-1 3-2 | 3-3 3-4 3-5 | 3-6 3-7 3-8
4-0 4-1 4-2 | 4-3 4-4 4-5 | 4-6 4-7 4-8
5-0 5-1 5-2 | 5-3 5-4 5-5 | 5-6 5-7 5-8
---------------------------------------
6-0 6-1 6-2 | 6-3 6-4 6-5 | 6-6 6-7 6-8
7-0 7-1 7-2 | 7-3 7-4 7-5 | 7-6 7-7 7-8
8-0 8-1 8-2 | 8-3 8-4 8-5 | 8-6 8-7 8-8
*/

if(N == Constants::ROW_COL_SIZE)
{
if( ValidateOneBlock(0, 2, 0, 2) &&
ValidateOneBlock(0, 2, 3, 5) &&
ValidateOneBlock(0, 2, 6, 8) &&

ValidateOneBlock(3, 5, 0, 2) &&
ValidateOneBlock(3, 5, 3, 5) &&
ValidateOneBlock(3, 5, 6, 8) &&

ValidateOneBlock(6, 8, 0, 2) &&
ValidateOneBlock(6, 8, 3, 5) &&
ValidateOneBlock(6, 8, 6, 8) )
{
return true;
}
}

return false;
}
template<unsigned int N>
bool Sudoku<N>::ValidateOneBlock(const int& minRowIndex, const int& maxRowIndex,
const int& minColIndex, const int& maxColIndex) const
{
std::bitset<N> bitBlock;
for(int i=minRowIndex; i<=maxRowIndex; i++){
for(int j=minColIndex; j<=maxColIndex; j++){
bitBlock.flip(m_matrix[i][j]-1);
}
}
return bitBlock.all();
}
int main()
{
int instances {0};
std::cin >> instances;
std::cin.clear();
std::cin.ignore();

for(int i{0}; i<instances; i++)
{
std::cout << "Instancia " << i+1 << "\n";
Sudoku<Constants::ROW_COL_SIZE> sudokuInstance;
sudokuInstance.ReadRows();
if(sudokuInstance.IsValid()) {
std::cout << Constants::STR_YES;
} else {
std::cout << Constants::STR_NO;
}
std::cout << "\n\n";
}

return 0;
}

最佳答案

你基本上有一个 3*3 的 block 数组,所以像这样的东西应该可以工作:

for ( int row = 0; row < 3; row++ )
{
for ( int column = 0; column < 3; column++ )
{
if (!ValidateOneBlock(row * 3, row * 3 + 2, column * 3, column * 3 + 2))
{
return false;
}
}
}
return true;

您可能需要另一个循环来验证这些行:

for ( int i = 0; i < 9; i++ )
{
if (!ValidateOneBlock(i, i, 0, 8))
{
return false;
}
if (!ValidateOneBlock(0, 8, i, i))
{
return false;
}
}

关于c++ - 更好的多函数调用设计,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58562654/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com