solution.md 4.0 KB
Newer Older
每日一练社区's avatar
每日一练社区 已提交
1
# 放棋子
F
fix bug  
feilong 已提交
2

每日一练社区's avatar
每日一练社区 已提交
3 4 5 6
今有6×6的棋盘,其中某些格子已预放了棋子。现在要再放上去一些,使得每行每列都正好有3颗棋子。我们希望推算出所有可能的放法,下面的代码就实现了这个功能。初始数组中,“1”表示放有棋子,“0”表示空白。  
![](https://img-blog.csdn.net/20170302185510449)

## aop
F
fix bug  
feilong 已提交
7

每日一练社区's avatar
每日一练社区 已提交
8
### before
F
fix bug  
feilong 已提交
9

每日一练社区's avatar
每日一练社区 已提交
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
```cpp
#include <iostream>
#include <cstdio>
int N = 0;
bool CheckStoneNum(int x[][6])
{
    for (int k = 0; k < 6; ++k)
    {
        int NumRow = 0, NumCol = 0;
        for (int i = 0; i < 6; ++i)
        {
            if (x[k][i])
                NumRow++;
            if (x[i][k])
                NumCol++;
        }
        if (NumRow != 3 || NumCol != 3)
            return false;
    }
    return true;
}
int GetRowStoneNum(int x[][6], int r)
{
    int sum = 0;
    for (int i = 0; i < 6; ++i)
    {
        if (x[r][i])
            sum++;
    }
    return sum;
}
int GetColStoneNum(int x[][6], int c)
{
    int sum = 0;
    for (int i = 0; i < 6; ++i)
    {
        if (x[i][c])
            sum++;
    }
    return sum;
}
void show(int x[][6])
{
    for (int i = 0; i < 6; ++i)
    {
        for (int j = 0; j < 6; ++j)
        {
            printf("%2d", x[i][j]);
        }
        printf("\n");
    }
    printf("\n");
}
void f(int x[][6], int r, int c);
void GoNext(int x[][6], int r, int c)
{
    if (c < 6)
    {
        f(x, r, c + 1);
    }
    else
    {
        f(x, r + 1, 0);
    }
}
```
### after
F
fix bug  
feilong 已提交
77

每日一练社区's avatar
每日一练社区 已提交
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
```cpp
int main()
{
    int x[6][6] = {
        {1, 0, 0, 0, 0, 0},
        {0, 0, 1, 0, 1, 0},
        {0, 0, 1, 1, 0, 1},
        {0, 1, 0, 0, 1, 0},
        {0, 0, 0, 1, 0, 0},
        {1, 0, 1, 0, 0, 1},
    };
    f(x, 0, 0);
    printf("%d\n", N);
    return 0;
}
```

## 答案
F
fix bug  
feilong 已提交
96

每日一练社区's avatar
每日一练社区 已提交
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
```cpp
void f(int x[][6], int r, int c)
{
    if (r == 6)
    {
        if (CheckStoneNum(x))
        {
            N++;
            show(x);
        }
        return;
    }
    if (x[r][c])
    {
        GoNext(x, r, c);
        return;
    }
    int rr = GetRowStoneNum(x, r);
    int cc = GetColStoneNum(x, c);
    if (cc >= 3)
    {
        GoNext(x, r, c);
    }
    else if (rr >= 3)
    {
        f(x, r + 1, 0);
    }
    else
    {
        x[r][c] = 1;
        GoNext(x, r, c);
        x[r][c] = 0;
        if (!(3 - rr >= 6 - c || 3 - cc >= 6 - r))
        {
            GoNext(x, r, c);
        }
    }
}
```
## 选项

F
fix bug  
feilong 已提交
138

每日一练社区's avatar
每日一练社区 已提交
139
### A
F
fix bug  
feilong 已提交
140

每日一练社区's avatar
每日一练社区 已提交
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
```cpp
void f(int x[][6], int r, int c)
{
    if (r == 6)
    {
        if (CheckStoneNum(x))
        {
            N++;
            show(x);
        }
        return;
    }
    if (x[r][c])
    {
        GoNext(x, r, c);
        return;
    }
    int rr = GetRowStoneNum(x, r);
    int cc = GetColStoneNum(x, c);
    if (cc >= 3)
    {
        GoNext(x, r, c);
    }
    else if (rr >= 3)
    {
        f(x, r + 1, 0);
    }
    else
    {
        x[r][c] = 1;
        GoNext(x, r, c);
        x[r][c] = 0;
    }
}
```

### B
F
fix bug  
feilong 已提交
178

每日一练社区's avatar
每日一练社区 已提交
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
```cpp
void f(int x[][6], int r, int c)
{
    if (r == 6)
    {
        if (CheckStoneNum(x))
        {
            N++;
            show(x);
        }
        return;
    }
    if (x[r][c])
    {
        GoNext(x, r, c);
        return;
    }
    int rr = GetRowStoneNum(x, r);
    int cc = GetColStoneNum(x, c);
    if (cc >= 3)
    {
        GoNext(x, r, c);
    }
    else if (rr >= 3)
    {
        f(x, r + 1, 0);
    }
    else
    {
        if (!(3 - rr >= 6 - c || 3 - cc >= 6 - r))
        {
            GoNext(x, r, c);
        }
    }
}
```

### C
F
fix bug  
feilong 已提交
217

每日一练社区's avatar
每日一练社区 已提交
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
```cpp
void f(int x[][6], int r, int c)
{
    if (r == 6)
    {
        if (CheckStoneNum(x))
        {
            N++;
            show(x);
        }
        return;
    }
    if (x[r][c])
    {
        GoNext(x, r, c);
        return;
    }
    int rr = GetRowStoneNum(x, r);
    int cc = GetColStoneNum(x, c);
    if (cc >= 3)
    {
        GoNext(x, r, c);
    }
    else if (rr >= 3)
    {
        f(x, r + 1, 0);
    }
    else
    {
        x[r][c] = 0;
        if (!(3 - rr >= 6 - c || 3 - cc >= 6 - r))
        {
            GoNext(x, r, c);
        }
    }
}
```