轮到罗剑桥出题了

这是什么风格,中文名称与英文名称分明对不上吗233

T1:

似乎只会做这道题23333

A....BE

........

C....DF

据题意数学变形得A-C<=B-D,B-D<=E-F,即左右的差是递增的。

A....B

.......

C....D

E....F

据题意数学变形得A-B<=C-D,C-D<=E-F,即上下的差是递增的。

那么令f1[i][j]=A[i][j]-A[i+1][j],f2[i][j]=A[i][j]-A[i][j+1]。

只有当f1[i][j-1]<=f1[i][j]且f2[i-1][j]<=f2[i][j]时 (i,j)才能进入矩形中。

那么问题就转化成最大子矩形,其内部没有坏点。

#include<cstdio>
#include<cctype>
#include<cstring>
#include<algorithm>
#define rep(i,s,t) for(int i=s;i<=t;i++)
using namespace std;
inline int read() {
int x=,f=;char c=getchar();
for(;!isdigit(c);c=getchar()) if(c=='-') f=-;
for(;isdigit(c);c=getchar()) x=x*+c-'';
return x*f;
}
const int maxn=;
int A[maxn][maxn],B[maxn][maxn],C[maxn][maxn],n,m,ans;
int is[maxn][maxn];
int right[maxn],left[maxn],up[maxn][maxn];
int main() {
freopen("neo.in","r",stdin);
freopen("neo.out","w",stdout);
n=read();m=read();
rep(i,,n) rep(j,,m) A[i][j]=read();
rep(i,,n) rep(j,,m) B[i][j]=A[i][j]-A[i+][j],C[i][j]=A[i][j]-A[i][j+];
n--;m--;
rep(i,,n) rep(j,,m) if(B[i][j]<=B[i][j+]&&C[i][j]<=C[i+][j]) is[i][j]=;
rep(i,,n) {
rep(j,,m) {
if(!is[i][j]) continue;
up[i][j]=up[i-][j]+;
if(j==) left[j]=;
else {
left[j]=j;
while(up[i][left[j]-]>=up[i][j]) left[j]=left[left[j]-];
}
}
for(int j=m;j;j--) {
if(!is[i][j]) continue;
if(j==m) right[j]=m;
else {
right[j]=j;
while(up[i][right[j]+]>=up[i][j]) right[j]=right[right[j]+];
}
ans=max(ans,(up[i][j]+)*(right[j]-left[j]+));
}
}
printf("%d\n",ans);
return ;
}

T2:简要题意,计算从最上角上方连一条管道到最下角下方的方案书数。

显然是不可做的插头DP,写个暴搜60

#include<cstdio>
#include<cctype>
#include<cstring>
#include<algorithm>
#define rep(i,s,t) for(int i=s;i<=t;i++)
using namespace std;
inline int read() {
int x=,f=;char c=getchar();
for(;!isdigit(c);c=getchar()) if(c=='-') f=-;
for(;isdigit(c);c=getchar()) x=x*+c-'';
return x*f;
}
const int maxn=;
int n,m,ans;
char A[maxn][maxn];
int have[maxn][maxn];
int mx[]={,-,,},my[]={,,,-};
void dfs(int x,int y) {
have[x][y]=;
if(x==n&&y==m) ans++;
else rep(dir,,) if(x>=&&x<=n&&y>=&&y<=m&&!have[x+mx[dir]][y+my[dir]]&&A[x+mx[dir]][y+my[dir]]=='.') dfs(x+mx[dir],y+my[dir]);
have[x][y]=;
}
int main() {
freopen("voda.in","r",stdin);
freopen("voda.out","w",stdout);
n=read();m=read();
rep(i,,n) scanf("%s",A[i]+);
if(A[][]=='#'||A[n][m]=='#') {puts("");return ;}
dfs(,);printf("%d\n",ans%);
return ;
}

T3:有一个N层M格的书架,可以将一本书移动到另一层,也可以把同一层的书左右移动,求从初始状态到最终状态的最少移动数。

考虑那些前后所在层不变的书,应对答案贡献总数-LCS的数目,如果这层全满,需要答案额外+1(先将一本拿到别层再拿回来)。

对于前后所在层变化的书,答案要+1表示移动一次,如果所在连通分量全满,同理答案要再+1.

#include<cstdio>
#include<cctype>
#include<cstring>
#include<algorithm>
#define rep(i,s,t) for(int i=s;i<=t;i++)
using namespace std;
inline int read() {
int x=,f=;char c=getchar();
for(;!isdigit(c);c=getchar()) if(c=='-') f=-;
for(;isdigit(c);c=getchar()) x=x*+c-'';
return x*f;
}
const int maxn=;
int m,C[maxn],t[maxn*maxn],g[maxn];
int get(int* C,int len) {
int ans=;
rep(i,,len) g[i]=<<;
rep(i,,len) {
int k=lower_bound(g+,g+len+,C[i])-g;
ans=max(ans,k);g[k]=C[i];
}
return ans;
}
int n,A[maxn][maxn],B[maxn][maxn],yes[maxn],ans;
int pos[maxn*maxn],pos2[maxn*maxn],first[maxn],next[maxn*maxn*],to[maxn*maxn*],e;
void AddEdge(int u,int v) {
ans++;
to[++e]=v;next[e]=first[u];first[u]=e;
to[++e]=u;next[e]=first[v];first[v]=e;
}
int vis[maxn],f[maxn];
int dfs(int x) {
if(vis[x]) return f[x];vis[x]=;
int& ans=f[x];ans=!yes[x];
for(int i=first[x];i;i=next[i]) ans&=dfs(to[i]);
return ans;
}
int main() {
freopen("police20.in","r",stdin);
freopen("police.out","w",stdout);
n=read();m=read();int ok=,dif=;
rep(i,,n) rep(j,,m) {
A[i][j]=read();
if(!A[i][j]) ok=yes[i]=;
else pos[A[i][j]]=i,pos2[A[i][j]]=j;
}
rep(i,,n) rep(j,,m) {
B[i][j]=read();
if(B[i][j]&&i!=pos[B[i][j]]) AddEdge(i,pos[B[i][j]]);
}
rep(i,,n) {
int len=;
rep(j,,m) if(B[i][j]&&pos[B[i][j]]==i) C[++len]=pos2[B[i][j]];
int tmp=len-get(C,len);
if(tmp) ans+=tmp+(len==m);
}
if(ans&&!ok) puts("-1");
else {
rep(i,,n) if(!vis[i]&&first[i]) ans+=dfs(i);
printf("%d\n",ans);
}
return ;
}

BJOI2015 Day2的更多相关文章

  1. 【从零开始学BPM,Day2】默认表单开发

    [课程主题]主题:5天,一起从零开始学习BPM[课程形式]1.为期5天的短任务学习2.每天观看一个视频,视频学习时间自由安排. [第二天课程] Step 1 软件下载:H3 BPM10.0全开放免费下 ...

  2. NOIp2016 Day1&Day2 解题报告

    Day1 T1 toy 本题考查你会不会编程. //toy //by Cydiater //2016.11.19 #include <iostream> #include <cstd ...

  3. day2

    三级菜单: ))))))))))] last_levels.pop() ]]]]]]]]:] information = : ch = msvcrt.getch() ][][: : password= ...

  4. java day2一个模拟双色球的代码

    package day2; import java.awt.Color; import java.awt.Font; import java.awt.Graphics; import java.awt ...

  5. Python基础-day2

    1.Python模块python 中导入模块使用import语法格式:import module_name示例1: 导入os模块system('dir')列出当前目录下的所有文件 # _*_ codi ...

  6. 【BZOJ 4517】【SDOI 2016 Round1 Day2 T2】排列计数

    本蒟蒻第一次没看题解A的题竟然是省选$Round1$ $Day2$ $T2$ 这道组合数学题. 考试时一开始以为是莫队,后来想到自己不会组合数的一些公式,便弃疗了去做第三题,,, 做完第三题后再回来看 ...

  7. 冲刺阶段 day2

    day2 项目进展 今天本组五位同学聚在一起将项目启动,首先我们对项目进行了规划,分工,明确指出每个人负责哪些项目.由负责第一部分的组员开始编程,在已经搭建好的窗体内,对系部设置进行了编写,本校共六个 ...

  8. BZOJ 4337: BJOI2015 树的同构 树hash

    4337: BJOI2015 树的同构 题目连接: http://www.lydsy.com/JudgeOnline/problem.php?id=4337 Description 树是一种很常见的数 ...

  9. python_way ,day2 字符串,列表,字典,时间模块

    python_way ,day2 字符串,列表,字典,自学时间模块 1.input: 2.0 3.0 区别 2.0中 如果要要用户交互输入字符串: name=raw_input() 如果 name=i ...

随机推荐

  1. FFT(1)

    FFT Complex struct complex{ double re,im; complex(double r,double i){re=r,im=i;} complex(){re=0.0,im ...

  2. MVC数据验证

    深入浅出 MVC 数据验证 2.0 [附演示源码] 今天在这里给大家介绍一下MVC的数据验证框架. 在1.0版中,很多朋友提出了怎么使用客户端验证,今天找了一些资料,发现了客户端验证的方法. 1.MV ...

  3. iOS constraint被应用于view上的时间

    在viewdidload时,constraint是没有被应用的,之后在layoutSubviews时,系统应用了constraint.但是我感觉在viewWillLayoutSubviews函数时就已 ...

  4. 让Delphi的DataSnap发挥最大效率

    让Delphi的DataSnap发挥最大效率 让Delphi的DataSnap发挥最大效率 一个DataSnap的应用程序由两个层组成: DataSnap服务器,它有一个带有一个或者更多DataSet ...

  5. 字母排列_next_permutation_字典序函数_待解决

    问题 B: 字母排列 时间限制: 1 Sec  内存限制: 64 MB提交: 19  解决: 5[提交][状态][讨论版] 题目描述 当给出一串字符时,我们逐个可以变换其字符,形成新的字符串.假如对这 ...

  6. AJAX 异步交互基本总结

    AJAX (Asynchronous JavaScript and Xml) 直译中文 - javascript和XML的异步 同步与异步的区别: 同步交互 执行速度相对比较慢 响应的是完整的HTML ...

  7. Light OJ 1199 - Partitioning Game (博弈sg函数)

    D - Partitioning Game Time Limit:4000MS     Memory Limit:32768KB     64bit IO Format:%lld & %llu ...

  8. linux编译中的常见问题

    转linux编译中的常见问题 错误提示:Makefile:2: *** 遗漏分隔符 . 停止. 原因makefile中 gcc语句前 缺少一个 tab分割符 错误提示: bash: ./makefil ...

  9. telnet 测试端口是否打开

    [root@mysqld ~]# yum list |grep telnet telnet.x86_64 1:0.17-48.el6 @base telnet-server.x86_64 1:0.17 ...

  10. 计算字符串相似度算法——Levenshtein

    转自:http://wdhdmx.iteye.com/blog/1343856 0.这个算法实现起来很简单 1.百度百科介绍: Levenshtein 距离,又称编辑距离,指的是两个字符串之间,由一个 ...