题目背景

农夫John正在测试一个他新发明的全自动寻找奶牛无人机,它能够照一张农场的图片然后自动找出奶牛的位置。

不幸的是,这个相机并不包含一个优秀的寻找奶牛函数,所以农夫John需要你来写一个。

农场的俯瞰图被定义为一个n * n的字符矩阵。矩阵由大写字母A到Z组成,每个字母表示一种可行

的颜色。农夫John发现一个可能是奶牛的位置(以下简称PCL)的最好定义如下:

一个PCL是一个矩阵(可能是整张图),矩阵的边与图像的边缘平行,且不能被其他PCL所包含(因此PCL内部不可能有PCL)

更多的,一个PCL必须满足以下特性:

1、矩阵有且只能有2种颜色构成。

2、这两种颜色一种构成一个连通块,另一种形成两个或两个以上的连通块。

举个例子:

AAAAA ABABA AAABB 这个矩阵就是一个PCL,其中颜色A构成一个连通块,B构成两个连通块,描述了一只可能以A为底色,B为花纹的奶牛。

在这里连通块被定义为:从其中的任何一个点,你能仅通过上下左右移动,到达另外任何一个点

(即上下左右相邻)

给定农场的照片,请你计算图中有几个PCL。

输入格式:

第一行包含一个正整数N,表示矩阵的边长。

接下来的N行每行N个字符,描述了这个矩阵的颜色。

输出格式:

输出PCL的个数

说明:

在这个样例里,两个PCL分别是:

(如下)

题目描述

Always known for being quite tech-savy, Farmer John is testing out his new automated drone-mounted cow locator camera, which supposedly can take a picture of his field and automatically figure out the location of cows. Unfortunately, the camera does not include a very good algorithm for finding cows, so FJ needs your help developing a better one.

The overhead image of his farm taken by the camera is described by an N \times NN×N grid of characters, each in the range A \ldots ZA…Z, representing one of 26 possible colors. Farmer John figures the best way to define a potential cow location (PCL) is as follows: A PCL is a rectangular sub-grid (possibly the entire image) with sides parallel to the image sides, not contained within any other PCL (so no smaller subset of a PCL is also a PCL). Furthermore, a PCL must satisfy the following property: focusing on just the contents of the rectangle and ignoring the rest of the image, exactly two colors must be present, one forming a contiguous region and one forming two or more contiguous regions.

AAAAA
ABABA
AAABB

For example, a rectangle with contents

would constitute a PCL, since the A's form a single contiguous region and the B's form more than one contiguous region. The interpretation is a cow of color A with spots of color B.

A region is "contiguous" if you can traverse the entire region by moving repeatedly from one cell in the region to another cell in the region taking steps up, down, left, or right.

Given the image returned by FJ's camera, please count the number of PCLs.

输入输出格式

输入格式:

The first line of input contains NN, the size of the grid (1 \leq N \leq 201≤N≤20).

The next NN lines describe the image, each consisting of NN characters.

输出格式:

Print a count of the number of PCLs in the image.

输入输出样例

输入样例#1: 复制

4
ABBC
BBBC
AABB
ABBC
输出样例#1: 复制

2

说明

In this example, the two PCLs are the rectangles with contents


ABB
BBB
AAB
ABB and BC
BC
BB
BC
``
思路:搜索。
因为数据范围很小,所以可以枚举每一个矩形,然后进行判断。
最后时,判断重合,统计答案即可。
#include<cmath>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
int a[][];
int n,ans,num;
int flag[][];
int color[],c[];
struct answer{
int i1,i2,j1,j2;
}pcl_[];
void find(int x,int i,int j,int i1,int i2,int j1,int j2){
flag[i][j]=;
if(i<i2&&flag[i+][j]==&&a[i+][j]==x) find(x,i+,j,i1,i2,j1,j2);
if(j<j2&&flag[i][j+]==&&a[i][j+]==x) find(x,i,j+,i1,i2,j1,j2);
if(i>i1&&flag[i-][j]==&&a[i-][j]==x) find(x,i-,j,i1,i2,j1,j2);
if(j>j1&&flag[i][j-]==&&a[i][j-]==x) find(x,i,j-,i1,i2,j1,j2);
return;
}
int pcl(int i1,int i2,int j1,int j2){
memset(c,,sizeof(c));
memset(flag,,sizeof(flag));
memset(color,,sizeof(color));
int numm=;
for(int i=i1;i<=i2;i++)
for(int j=j1;j<=j2;j++)
if(flag[i][j]==){
if(color[a[i][j]]==) numm++,c[numm]=a[i][j];
if(numm>) return ;
color[a[i][j]]++;
find(a[i][j],i,j,i1,i2,j1,j2);
}
if((color[c[]]==&&color[c[]]>)||(color[c[]]==&&color[c[]]>)) return ;
else return ;
}
int check(int x){
for(int i=;i<=num;i++)
if(i!=x&&pcl_[x].i1>=pcl_[i].i1&&pcl_[x].i2<=pcl_[i].i2&&pcl_[x].j1>=pcl_[i].j1&&pcl_[x].j2<=pcl_[i].j2)
return ;
return ;
}
int main(){
scanf("%d",&n);
for(int i=;i<=n;i++)
for(int j=;j<=n;j++){
char x;cin>>x;
a[i][j]=x-'A';
}
for(int i1=;i1<=n;i1++)
for(int i2=i1;i2<=n;i2++)
for(int j1=;j1<=n;j1++)
for(int j2=j1;j2<=n;j2++)
if(pcl(i1,i2,j1,j2)==) {
num++;
pcl_[num].i1=i1;
pcl_[num].i2=i2;
pcl_[num].j1=j1;
pcl_[num].j2=j2;
}
for(int i=;i<=num;i++)
if(check(i)==) ans++;
cout<<ans;
}
 

洛谷 P3671 [USACO17OPEN]Where's Bessie? 贝西在哪呢的更多相关文章

  1. 洛谷P3668 [USACO17OPEN]Modern Art 2 现代艺术2

    P3668 [USACO17OPEN]Modern Art 2 现代艺术2 题目背景 小TY的同学HF也想创作艺术 HF只有一块长条状的画布(画条),所以每一次涂色只能涂上连续几个单位的颜料,同样新的 ...

  2. 洛谷 P3670 [USACO17OPEN]Bovine Genomics S奶牛基因组(银)

    P3670 [USACO17OPEN]Bovine Genomics S奶牛基因组(银) 题目描述 Farmer John owns NN cows with spots and NN cows wi ...

  3. 洛谷 P3669 [USACO17OPEN]Paired Up 牛牛配对

    P3669 [USACO17OPEN]Paired Up 牛牛配对 题目描述 Farmer John finds that his cows are each easier to milk when ...

  4. 洛谷 [USACO17OPEN]Bovine Genomics G奶牛基因组(金) ———— 1道骗人的二分+trie树(其实是差分算法)

    题目 :Bovine Genomics G奶牛基因组 传送门: 洛谷P3667 题目描述 Farmer John owns NN cows with spots and NN cows without ...

  5. 洛谷 1938 [USACO09NOV]找工就业Job Hunt

    洛谷 1938  [USACO09NOV]找工就业Job Hunt 题目描述 Bessie is running out of money and is searching for jobs. Far ...

  6. 洛谷 2953 [USACO09OPEN]牛的数字游戏Cow Digit Game

    洛谷 2953 [USACO09OPEN]牛的数字游戏Cow Digit Game 题目描述 Bessie is playing a number game against Farmer John, ...

  7. 洛谷 P3003 [USACO10DEC]苹果交货Apple Delivery

    洛谷 P3003 [USACO10DEC]苹果交货Apple Delivery 题目描述 Bessie has two crisp red apples to deliver to two of he ...

  8. 【洛谷P1352】没有上司的舞会

    [洛谷P1352]没有上司的舞会 x舷售 锚」翅θ 但是 拙臃 蓄ⅶ榔 暄条熨卫 翘ヴ馇 表现无愧于雪月工作室的核心管理 爸惚扎掬 颇瓶 芟缆肝 貌痉了 洵┭笫装 嗝◇裴腋 褓劂埭 ...

  9. 洛谷P2845-Switching on the Lights 开关灯

    Problem 洛谷P2845-Switching on the Lights 开关灯 Accept: 154    Submit: 499Time Limit: 1000 mSec    Memor ...

随机推荐

  1. [LUOGU]3919 【模板】可持久化数组

    用可持久化线段树维护可持久化数组.可持久化线段树见之前发的主席树模板 #include <iostream> #include <cstdio> #include <cs ...

  2. php 中引入邮箱服务 , 利用第三方的smtp邮件服务

    项目中用短信通知有时间限制,对一些频率比较大的信息力不从心. 使用邮箱发送信息是个不错的选择\(^o^)/! 首先要注册一个邮箱,在邮箱设置里开通smtp功能. 简单介绍下smtp,大概就是第三方客户 ...

  3. java中BufferedReader 有什么用

    这个类就是一个包装类,它可以包装字符流,将字符流放入缓存里,先把字符读到缓存里,到缓存满了或者你flush的时候,再读入内存,就是为了提供读的效率而设计的. BufferedReader buffer ...

  4. 【Codeforces Round #476 (Div. 2) [Thanks, Telegram!] A】Paper Airplanes

    [链接] 我是链接,点我呀:) [题意] 在这里输入题意 [题解] 统计每个人需要的sheet个数. 乘上k 然后除p就是需要的pack个数了 [代码] #include <bits/stdc+ ...

  5. java.lang.RuntimeException: java.sql.SQLSyntaxErrorException: ORA-00911: 无效字符

    这种情况可能是因为在设置数据库的时候,没有配置数据库的方言,导致sql语句无法被识别. 例如在配置Jfinal的配置文件的时候 如果不配置数据库的方言,默认下它是MySQL的,当使用oracle数据库 ...

  6. shell 键盘录入和运算

    一.read 命令,从键盘读入数据,赋给变量 1.脚本代码 #!/bin/sh read arg1 arg2 echo "第一个参数: $arg1" echo "第二个参 ...

  7. angular-基础

    AngularJs特点: 1.依赖注入 2.模块化 3.双向绑定 4.语义化标签 当网页加载完毕,AngularJS 自动开启. ng-app 指令告诉 AngularJS,<div> 元 ...

  8. COGS——T 886. [USACO 4.2] 完美的牛栏

    http://www.cogs.pro/cogs/problem/problem.php?pid=886 ★★☆   输入文件:stall4.in   输出文件:stall4.out   简单对比时间 ...

  9. ABAP FIELD-SYMBOLS 有大作用- 将没有可改參数的增强出口变得也能改主程序的值了

    看下图代码: report  z_xul_test2 中 定义了 全局变量 G_DATA1 , 分别调用了 z_xul_tes1 中的 form  和 function zbapi_test , 这两 ...

  10. Detours改动段属性漏洞

    v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VM ...