[Nowcoder] 2021年度训练联盟热身训练赛第六场 Mini Battleship | 深搜 回溯 乱搞

这篇博客讨论了Mini Battleship游戏的策略和解决方案。给定一个不超过5x5的小型战场和一些船只,目标是计算出所有可能的船只布局方式,使得这些布局与已知的命中和错过信息相一致。博主提供了样例输入和输出,并分享了一个使用深度优先搜索的C++解决方案,该方案类似于经典的八皇后问题。通过判断和放置船只,程序计算出合法的布局总数。
摘要由CSDN通过智能技术生成

题目链接

题目描述

Battleship is a game played by two players. Each player has their own grid, which is hidden from their opponent. Each player secretly places some ships on their grid. Each ship covers a horizontal or vertical straight line of one or more continguous squares. Ships cannot overlap. All ships are considered distinct, even if they have the same size.
After placing their ships, the players then take turns taking shots at their opponent’s ships by calling out a coordinate of their opponent’s grid. The opponent must honestly say whether the shot was a hit or a miss. When all of a ship’s squares are hit, that ship sinks (“You sunk my battleship!!”). A player loses when all of their ships are sunk.
Bob is playing a game of Mini Battleship against Alice. Regular Battleship is played on a 10×10 grid with 5 ships. Mini Battleship is much smaller, with a grid no larger than 5×5 and possibly fewer than 5 ships. Bob wonders how many ship placements are possible on Alice’s board given what he knows so far.
The answer will be 0 if Alice is cheating! (Or, if the game setup isn’t possible.)

输入

The first line of input contains two space-separated integers n (1 ≤ n ≤ 5) and k (1 ≤ k ≤ 5),which represent a game of Mini Battleship played on an n×n grid with k ships.
Each of the next n lines contains a string s (|s| = n). This is what Bob sees of Alice’s grid so far.
A character ‘X’ represents one of Bob’s shots that missed. A character ‘O’ (Letter O, not zero) represents one of Bob’s shots that hit. A Dot (‘.’) represents a square where Bob has not yet taken a shot. Each of the next k lines contains a single integer x (1 ≤ x ≤ n). These are the sizes of the ships.

输出

Output a single integer, which is the number of ways the k distinct ships could be placed on Alice’s grid and be consistent with what Bob sees.

样例输入 Copy

【样例1】

4 3
....
.OX.
....
O..X
3
2
1

【样例2】

4 4
.X.X
.XX.
...X
....
1
2
3
4

【样例3】

2 2
..
..
2
2

样例输出 Copy

【样例1】

132

【样例2】

6

【样例3】

4

题意:
给定一个 n ∗ n n * n nn的矩阵,其中在 X X X上一定不可以放置船,而在 O O O上面一定要放置船,在 ′ . ′ '.' .上面可以放置船,也可以不放,问将以下 m m m艘船,大小均为 1 ∗ x 1 * x 1x,放置在矩阵中的方案数量
思路:
类似经典的八皇后问题,
首先将所有的m个都成功放置之后,并且所有的O均已成功放置船艘,此时的方案书就应该 + 1
注意船的形状一共有两种情况:横着和竖着,但是对于1 * 1的情况来说就只有一种状态,这里要特判掉
我们用 j u d g e ( ) judge() judge()函数来判断是否能够是否可以放置该船,如果说要是放置过程中遇到了’X’,那是一定不能够放下去的,反之可以放下这艘船,对于能够放下去的船,我们将它的位置vis[i][j] += 1;

char s[7][7];
int in[10];
int n, m;
int ans;
int vis[7][7];
bool ok() {
    for(int i = 1; i <= n; i++) {
        for(int j = 1; j <= n; j++) {
            if(s[i][j] == 'O' && vis[i][j] == 0)
                return false;/// O must place but not vis
        }
    }
    return true;
}
bool judge(int pos, int x, int y, int t) {
    if(t == 0) {
        if(y + in[pos] - 1 > n)
            return false;/// <= n
        for(int i = y; i < y + in[pos]; i++) {
            if(vis[x][i] || s[x][i] == 'X')
                return false;/// X not place
        }
    } else {
        if(x + in[pos] - 1 > n)
            return false;
        for(int i = x; i < x + in[pos]; i++) {
            if(vis[i][y] || s[i][y] == 'X')
                return false;
        }
    }
    return true;
}
void addBattleship(int x, int y, int pos, int id, int val) {
    if(id == 0) {
        for(int i = y; i < y + in[pos]; i++) {
            vis[x][i] += val;
        }
    } else {
        for(int i = x; i < x + in[pos]; i++) {
            vis[i][y] += val;
        }
    }
}
void dfs(int x) {
    if(x >= m + 1) {
        if(ok())
            ans ++;
        return ;
    }
    for(int i = 1; i <= n; i++) {
        for(int j = 1; j <= n; j++) {
            if(vis[i][j] || s[i][j] == 'X')
                continue;/// X must not place
            int lim = 1;
            if(in[x] == 1)
                lim = 0;
            for(int t = 0; t <= lim; t++) {
                if(judge(x, i, j, t)) {/// can place
                    addBattleship(i, j, x, t, 1);
                    dfs(x + 1);
                    addBattleship(i, j, x, t, -1);
                }
            }
        }
    }
}
 
int main() {
    cin >> n >> m;
    for(int i = 1; i <= n; i++)
        cin >> s[i] + 1;
    for(int i = 1; i <= m; i++)
        cin >> in[i];
    sort(in+1,in+1+m);
    ans = 0;
    dfs(1);
    cout << ans << endl;
    return 0;
}
/**
4 3
....
.OX.
....
O..X
3
2
1
 
**/
 
/**************************************************************
    Problem: 18783
    Language: C++
    Result: 正确
    Time:1908 ms
    Memory:2036 kb
****************************************************************/
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值