洛谷 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

相关推荐
xiaoye-duck1 天前
《算法题讲解指南:优选算法-字符串》--61.最长公共前缀,62.最长回文子串,63.二进制求和,64.字符串相乘
c++·算法·字符串
itman3013 天前
C语言字符串必知:末尾有个隐藏的\0,新手易踩坑
c语言·字符串·内存管理·库函数·指针操作
汉克老师4 天前
GESP2024年12月认证C++三级( 第一部分选择题(9-15))
c++·字符串·位运算·进制·补码·gesp三级·gesp3级
汉克老师4 天前
GESP2024年12月认证C++三级( 第一部分选择题(1-8))
c++·字符串·二进制·八进制·补码·gesp三级·gesp3级
王老师青少年编程5 天前
csp信奥赛c++之字符数组与字符串的区别
c++·字符串·字符数组·csp·信奥赛
Tisfy7 天前
LeetCode 3474.字典序最小的生成字符串:暴力填充
算法·leetcode·字符串·题解
汉克老师8 天前
GESP2025年6月认证C++三级( 第一部分选择题(9-15))
c++·字符串·位运算·gesp三级·gesp3级
Tisfy10 天前
LeetCode 2839.判断通过操作能否让字符串相等 I:if-else(两两判断)
算法·leetcode·字符串·题解
Thomas.Sir12 天前
第三章:Python3 之 字符串
开发语言·python·字符串·string
Hknll16 天前
CSP第33次认证题解
数据结构·c++·算法·stl·字符串·csp认证·vector/array