Battle ships
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 0 Accepted Submission(s): 0
Problem Description
Dear contestant, now you are an excellent navy commander, who is responsible of a tough mission currently.
Your fleet unfortunately encountered an enemy fleet near the South Pole where the geographical conditions are negative for both sides. The floating ice and iceberg blocks battleships move which leads to this unexpected engagement highly dangerous, unpredictable and incontrollable.
But, fortunately, as an experienced navy commander, you are able to take opportunity to embattle the ships to maximize the utility of cannons on the battleships before the engagement.
The target is, arrange as many battleships as you can in the map. However, there are three rules so that you cannot do that arbitrary:
A battleship cannot lay on floating ice
A battleship cannot be placed on an iceberg
Two battleships cannot be arranged in the same row or column, unless one or more icebergs are in the middle of them.
Your fleet unfortunately encountered an enemy fleet near the South Pole where the geographical conditions are negative for both sides. The floating ice and iceberg blocks battleships move which leads to this unexpected engagement highly dangerous, unpredictable and incontrollable.
But, fortunately, as an experienced navy commander, you are able to take opportunity to embattle the ships to maximize the utility of cannons on the battleships before the engagement.
The target is, arrange as many battleships as you can in the map. However, there are three rules so that you cannot do that arbitrary:
A battleship cannot lay on floating ice
A battleship cannot be placed on an iceberg
Two battleships cannot be arranged in the same row or column, unless one or more icebergs are in the middle of them.
Input
There is only one integer T (0<T<12) at the beginning line, which means following T test cases.
For each test case, two integers m and n (1 <= m, n <= 50) are at the first line, represents the number of rows and columns of the battlefield map respectively. Following m lines contains n characters iteratively, each character belongs to one of ‘#’, ‘*’, ‘o’, that symbolize iceberg, ordinary sea and floating ice.
For each test case, two integers m and n (1 <= m, n <= 50) are at the first line, represents the number of rows and columns of the battlefield map respectively. Following m lines contains n characters iteratively, each character belongs to one of ‘#’, ‘*’, ‘o’, that symbolize iceberg, ordinary sea and floating ice.
Output
For each case, output just one line, contains a single integer which represents the maximal possible number of battleships can be arranged.
Sample Input
2
4 4
*ooo
o###
**#*
ooo*
4 4
#***
*#**
**#*
ooo#
Sample Output
3
5
题意:
给出 T 组样例,输入 N 行 M 列。o 代表是可穿区域,# 代表不可穿区域,* 代表可放区域。问要求放物体到 * 上面,要求不允许放同一行或者同一列,# 不可以穿过,但是 o 是可以穿过的。输出最大能放的个数。
思路:
二分图。连通块建图。当时想到的是每个点之间建图,并没有想到用连通块。每个点建图的话,构出来的图有可能不是二分图,所以不能用点建图。
AC:
#include <cstdio> #include <cstring> #include <algorithm> using namespace std; const int MAX = 55; char Map[MAX][MAX]; int cro[MAX][MAX], ver[MAX][MAX]; int n, m; int G[MAX * MAX][MAX * MAX]; int u; int linker[MAX * MAX]; bool vis[MAX * MAX]; void build () { memset(cro, -1, sizeof(cro)); memset(ver, -1, sizeof(ver)); u = 0; for (int i = 1; i <= n; ++i) { for (int j = 1; j <= m; ++j) { if (Map[i][j] == '*' && cro[i][j] == -1) { int t = j; ++u; while (t <= m && Map[i][t] != '#') { if (Map[i][t] == '*') cro[i][t] = u; ++t; } j = t; } } } for (int i = 1; i <= n; ++i) { for (int j = 1; j <= m; ++j) { if (Map[i][j] == '*' && ver[i][j] == -1) { int t = i; ++u; while (t <= n && Map[t][j] != '#') { if (Map[t][j] == '*') ver[t][j] = u; ++t; } } } } memset(G, 0, sizeof(G)); for (int i = 1; i <= n; ++i) { for (int j = 1; j <= m; ++j) { if (Map[i][j] == '*') { int a = cro[i][j]; int b = ver[i][j]; G[a][b] = G[b][a] = 1; } } } } bool dfs (int x) { for (int i = 1; i <= u; ++i) { if (G[x][i] && !vis[i]) { vis[i] = 1; if (linker[i] == -1 || dfs(linker[i])) { linker[i] = x; return true; } } } return false; } int hungary () { int res = 0; memset(linker, -1, sizeof(linker)); for (int i = 1; i <= u; ++i) { memset(vis, 0, sizeof(vis)); if (dfs(i)) ++res; } return res; } int main() { int t; scanf("%d", &t); while (t--) { scanf("%d%d", &n, &m); for (int i = 1; i <= n; ++i) { for (int j = 1; j <= m; ++j) { scanf(" %c", &Map[i][j]); } } build(); printf("%d\n", hungary() / 2); } return 0; }
相关推荐
在题目B "Battle ships" 中,我们需要在由海域(*)、冰水(o)和冰山(#)组成的二维网格中放置船只,确保没有两艘船能相互看到。这个问题可以通过构建二分图来解决。首先,我们可以将行和列分别看作两个集合,每个交点...
【船级社】 NK Rules for the Survey and Construction of Steel Ships _ Guidance Part W NAVIGATION BRIDGE VISIBILITY.pdf
在“battle-ships-main”这个压缩包中,可能包含了HTML文件(用于游戏界面)、JavaScript文件(包含游戏逻辑和DOM操作)、CSS文件(定义样式)以及其他辅助资源,如图片或字体文件。通过解压和阅读这些文件,可以...
【船级社】 467-NR_2022-07 Rules for the Classification of Steel Ships 2022-07
【船级社】 NK Rules for the Survey and Construction of Steel Ships _ Guidance Part C HULL CONSTRUCTION AND EQUIPMENT.pdf
【船级社】 NK Rules for the Survey and Construction of Steel Ships _ Guidance Part CS HULL CONSTRUCTION AND EQUIPMENT OF SMALL SHIPS.pdf
根据文件中提供的信息,我们可以详细阐述以下几个关于“Cyber-enabled ships(网络化船舶)”的关键知识点: 1. 网络化船舶的定义及应用领域: 网络化船舶是指将现代信息技术(IT)融入传统海运船舶中,使得船舶的...
新版完整标准 BS ISO 24061-2021 Ships and marine technology — High holding power balance anchors.pdf
【船级社】 KR RULES AND GUIDANCE FOR THE CLASSIFICATION OF STEEL SHIPS PART 7 Ships of Special Service (CH 5 6).pdf
【船级社】 KR RULES AND GUIDANCE FOR THE CLASSIFICATION OF STEEL SHIPS PART 7 Ships of Special Service (Ch1-4 7-10).pdf
**Control of Ships and Underwater Vehicles** 这一主题聚焦于船舶及水下航行器的设计与控制方法,尤其关注于欠驱动(underactuated)及非线性(nonlinear)海洋系统的设计。本书由Khac Duc Do 和 Jie Pan两位在...
简单React全栈 这是使用React,Node.js,Express和Webpack构建完整堆栈Web应用程序的样板。它还使用webpack-dev-server,eslint,prettier和babel进行配置。 介绍 是快速开始React开发的一种方法,它不需要构建配置...
BS ISO 1704-2022 - Ships and marine technology — Stud-link function – Prin.pdf
【船级社】 00-part-1-ships-jul2023 ABS RULES FOR CONDITIONS OF CLASSIFICATION.rar
#战舰当有两个玩家分别用一个棋盘初始化并且每个棋盘上放置了 5 艘船时,游戏就可以开始了。 默认情况下,玩家 1 先走,每次击球后,它会切换回合,直到获胜。 添加了一个 game_setup.rb 文件,该文件将游戏设置为...
《ships Times》是一款聚焦航海冒险主题的游戏,其demo版本提供了C#编程语言编写的冒险代码。这款游戏将玩家带入一个充满神秘与探索的航海时代,让玩家体验双重游戏模式的乐趣。接下来,我们将深入探讨其中涉及的...
【船级社】 NK Rules for the Survey and Construction of Steel Ships _ Guidance Part I SHIPS OPERATING IN POLAR WATERS POLAR CLASS SHIPS AND ICE CLASS SHIPS.pdf
《Big Toon SciFi Star Ships》是一个集合了科幻风格星舰模型资源的压缩包,主要用于Unity游戏开发。这个资源库包含了一系列精心设计的3D科幻星际飞船模型,旨在为Unity项目提供高质量的视觉元素,提升游戏或应用的...
"Space Arcade - Enemy Ships.rar"是一个与Unity相关的项目,很可能是一个太空射击游戏的资源包,包含了敌机设计和相关的编程元素。在这个项目中,我们可以深入探讨Unity在开发网络多人游戏时所涉及的关键技术。 ...
作业说明 使用面向对象的设计方法来创建,开发和测试AdaShip(经典纸质战舰游戏的REPL.IT C ++计算机控制台版本/改编版)。 您应该采用敏捷和迭代的方法来分解,设计和开发游戏; 理想情况下,应尽早进行测试,然后...