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

相关推荐
汉克老师2 天前
GESP2023年6月认证C++三级( 第三部分编程题(2、密码合规检测))
c++·字符串·gesp三级·gesp3级
Tisfy4 天前
LeetCode 2833.距离原点最远的点:计数
算法·leetcode·字符串·题解·模拟·计数
罗湖老棍子6 天前
Beads(信息学奥赛一本通- P1461) [POI 2010] KOR-Beads(洛谷-P3498)
算法·字符串·哈希
itman30113 天前
C语言printf输出格式:%d %f %s等用法详解
c语言·字符串·printf·格式化输出·整数
Tisfy13 天前
LeetCode 2515.到目标字符串的最短距离:从中间往两边遍历
算法·leetcode·字符串·题解·数组·遍历
庞轩px13 天前
第二篇:String、StringBuilder、StringBuffer深度剖析
java·字符串·stringbuilder·string·stringbuffer·字符串常量池
罗湖老棍子14 天前
Power Strings(信息学奥赛一本通- P1457)
算法·字符串·哈希
wenhaoran1115 天前
CF1800F Dasha and Nightmares
c++·算法·字符串·codeforces·位运算
网域小星球17 天前
C 语言从 0 入门(七)|字符数组与字符串完整精讲|VS2022 高质量实战
c语言·开发语言·字符串·vs2022·字符数组
九英里路17 天前
cpp容器——string模拟实现
java·前端·数据结构·c++·算法·容器·字符串