zoukankan
html css js c++ java
PKU2029
#include
<
stdio.h
>
#include
<
string
.h
>
int
n, W, H, w, h;
int
m[
101
][
101
];
int
cnt;
void
DP()
{
int
i, j;
int
c
=
0
;
for
(i
=
w;i
<=
W;i
++
)
for
(j
=
h;j
<=
H;j
++
)
{
if
(j
==
h)
{
c
=
0
;
int
ii, jj;
for
(ii
=
i
-
w
+
1
;ii
<=
i;ii
++
)
for
(jj
=
1
;jj
<=
h;jj
++
)
if
(m[ii][jj]
==
1
)
c
++
;
if
(cnt
<
c)
cnt
=
c;
}
else
{
int
k;
for
(k
=
i
-
w
+
1
;k
<=
i;k
++
)
{
if
(m[k][j
-
h]
==
1
)
c
--
;
if
(m[k][j]
==
1
)
c
++
;
}
if
(cnt
<
c)
cnt
=
c;
}
}
}
int
main()
{
while
(scanf(
"
%d
"
,
&
n)
==
1
&&
n)
{
cnt
=
0
;
memset(m,
0
,
sizeof
(m));
scanf(
"
%d%d
"
,
&
W,
&
H);
int
i;
int
x, y;
for
(i
=
0
;i
<
n;i
++
)
{
scanf(
"
%d%d
"
,
&
x,
&
y);
m[x][y]
=
1
;
}
scanf(
"
%d%d
"
,
&
w,
&
h);
DP();
printf(
"
%d\n
"
, cnt);
}
return
0
;
}
查看全文
相关阅读:
java远程连接linux,执行脚本启动Tomcat
IDEA启动项目时报错:Error running 'Application': Command line is too long. Shorten command line for Application or also for Spring Boot default configuration.
解决Error: Cannot find module 'node-sass'问题
微信小程序 errMsg: "request:fail -102:net::ERR_CONNECTION_REFUSED"
微信小程序自定义swiper轮播图面板指示点的位置
微信小程序swiper不能显示的问题
微信小程序border-bottom 的长度解决方法
Unexpected end of JSON input while parsing near
使用AOP统一处理Web请求日志
Hadoop 2:Mapper和Reduce
原文地址:https://www.cnblogs.com/SQL/p/932289.html
最新文章
代码编辑器[0] -> Vim/gVim[3] -> 像编程一样使用Vim
Python的异步编程[0] -> 协程[1] -> 使用协程建立自己的异步非阻塞模型
Python的异步编程[0] -> 协程[0] -> 协程和 async / await
Python_Tips[7] -> 偏函数
Python与数据结构[4] -> 散列表[2] -> 开放定址法与再散列的 Python 实现
Python与数据结构[4] -> 散列表[1] -> 分离链接法的 Python 实现
Python与数据结构[4] -> 散列表[0] -> 散列表与散列函数的 Python 实现
Python与数据结构[3] -> 树/Tree[2] -> AVL 平衡树和树旋转的 Python 实现
Python与数据结构[3] -> 树/Tree[1] -> 表达式树和查找树的 Python 实现
自动生成一个名字
热门文章
修改了.gitignore之后还是显示没有提交
vue项目打包后白屏
分享整理的免费API接口
监听div发生过改变的方法
vue-cli3 vue.config.js常用的配置
JS制作验证码
微信网页开发配置
win10 java 13配置
vue-router跳转相同路径报错
如何制定可行的计划,并好好执行!
Copyright © 2011-2022 走看看