洛谷 AT_abc269_b [ABC269B]:Rectangle Detection

【题目来源】
https://www.luogu.com.cn/problem/AT_abc269_b
https://atcoder.jp/contests/abc269/tasks/abc269_b

【题目描述】
Takahashi generated 10 strings S1, S2, ..., S10 as follows.
• First, let Si(1≤i≤10)=..........(10 .s in a row).
• Next, choose four integers A, B, C, and D satisfying all of the following.
○ 1≤A≤B≤10.
○ 1≤C≤D≤10.
• Then, for every pair of integers (i,j) satisfying all of the following, replace the j-th character of Si with #.
○ A≤i≤B.
○ C≤j≤D.
You are given S1, S2, ....., S10 generated as above. Find the integers A, B, C, and D Takahashi chose.
It can be proved that such integers A, B, C, and D uniquely exist (there is just one answer) under the Constraints.

塔哈夫什按照以下方式生成了 10 个字符串 S1、S2、......、S10。
• 首先,令 Si(1≤i≤10)= ......(连续 10 个字符 ".")。
• 接下来,选择四个整数 A、B、C 和 D,满足以下所有条件。
○ 1≤A≤B≤10。
○ 1≤C≤D≤10。
• 然后,对于满足以下所有条件的每一个整数对 (i,j) ,将 Si 的第 j 个字符替换为 #。
○ A≤i≤B。
○ C≤j≤D。
现在给定按照上述方法生成的 S1,S2,...,S10,请你求出高桥君选择的整数 A,B,C,D。根据题目限制,可以证明 A,B,C,D 的值是唯一确定的(即答案唯一)。

【输入格式】
The input is given from Standard Input in the following format:
S1
S2
...
S10

输入将以以下格式从标准输入中给出:
S1
S2
...
S10

【输出格式】
Print the answer in the following format:
A B
C D

请按照以下格式输出答案:
A B
C D

【输入样例一】

cpp 复制代码
..........
..........
..........
..........
...######.
...######.
...######.
...######.
..........
..........

【输出样例一】

cpp 复制代码
5 8
4 9

【输入样例二】

cpp 复制代码
..........
..#.......
..........
..........
..........
..........
..........
..........
..........
..........

【输出样例二】

cpp 复制代码
2 2
3 3

【输入样例三】

cpp 复制代码
##########
##########
##########
##########
##########
##########
##########
##########
##########
##########

【输出样例三】

cpp 复制代码
1 10
1 10

【数据范围】
S1, S2, ..., S10 are strings, each of length 10, that can be generated according to the Problem Statement.
S1、S2、...、S10 均为字符串,每个字符串的长度均为 10,它们可依据问题说明进行生成。

【算法分析】
● 样例一的解释:
在这里,塔哈夫什选择了 ++A = 5、B = 8、C = 4、D = 9++ 。
这一选择生成了 10 个长度为 10 的字符串 S1、S2、......、S10,其中 ++S5、S6、S7、S8 的第 4 个到第 9 个字符是"#",其余字符则是"."++ 。
这些字符串与输入中给出的字符串完全相同。

● vector<string> s(N); 的作用是创建一个名为 s 的、存储 string(字符串)类型元素的动态数组,并且初始化这个数组的大小为 N,每个元素都是空字符串 ""。

【算法代码】

cpp 复制代码
#include <bits/stdc++.h>
using namespace std;

const int N=12;
vector<string> s(N);
int a=INT_MAX,b=INT_MIN;
int c=INT_MAX,d=INT_MIN;

int main() {
    for(int i=0; i<10; i++) cin>>s[i];

    for(int i=0; i<10; i++) {
        for(int j=0; j<10; j++) {
            if(s[i][j]=='#') {
                a=min(a,i),b=max(b,i);
                c=min(c,j),d=max(d,j);
            }
        }
    }
    cout<<a+1<<" "<<b+1<<endl;
    cout<<c+1<<" "<<d+1<<endl;
}

/*
in:
..........
..........
..........
..........
...######.
...######.
...######.
...######.
..........
..........

out:
5 8
4 9
*/

【参考文献】
https://www.luogu.com.cn/problem/solution/AT_abc269_b
https://blog.csdn.net/weixin_73010943/article/details/137162831

相关推荐
闲人编程4 天前
内存数据库性能调优
数据库·redis·字符串·高并发·哈希·内存碎片
Tisfy5 天前
LeetCode 761.特殊的二进制字符串:分治(左右括号对移动)
算法·leetcode·字符串·递归·分治
hnjzsyjyj8 天前
洛谷 P8738:[蓝桥杯 2020 国 C] 天干地支 ← string
蓝桥杯·字符串·天干地支
闻缺陷则喜何志丹10 天前
【C++DFS 马拉车】3327. 判断 DFS 字符串是否是回文串|2454
c++·算法·深度优先·字符串·力扣·回文·马拉车
Tisfy10 天前
LeetCode 3714.最长的平衡子串 II:前缀和(一二三分类)
算法·leetcode·前缀和·字符串·题解
码农幻想梦11 天前
PKUKY150 浮点数加法(北京大学考研机试真题)
考研·字符串
远方23515 天前
哈希计算器1.0
字符串·md5·哈希·sha256
hnjzsyjyj17 天前
洛谷 P13270:【模板】最小表示法 ← 双指针 + 解环成链
字符串·双指针·解环成链