【Codeforces 429B】Working out
【链接】 我是链接,点我呀:)
【题意】
两个人,一个人在左上角,一个人在左下角。
左上角要到右下角去
左下角要到右上角去
只能走到相邻的格子(不能往回走,即一个往右下,一个往右上走)
要求这两个人必须要在这个n*m的格子中选择一个格子作为休息点.
(两条路径只能有一个一样的点)
问最多能拿到多少分数(每个格子上有一个分数值)
【题解】
![](https://img2018.cnblogs.com/blog/1251265/201902/1251265-20190214171159886-1414539422.png)
会发现只有②和③不会重复走
则设f[p][i][j]分别为从左上、左下、右上、右下出发,到达点(i,j)的最大分数值
枚举休息点在什么地方
根据上图取答案的最大值就好
【代码】
import java.io.*;
import java.util.*;
public class Main {
static InputReader in;
static PrintWriter out;
public static void main(String[] args) throws IOException{
//InputStream ins = new FileInputStream("E:\\rush.txt");
InputStream ins = System.in;
in = new InputReader(ins);
out = new PrintWriter(System.out);
//code start from here
new Task().solve(in, out);
out.close();
}
static int N = (int)1e3;
static class Task{
public void solve(InputReader in,PrintWriter out) {
int n,m;
int [][]a = new int[N+10][N+10];
int [][][]f = new int[4][N+10][N+10];
n = in.nextInt();m = in.nextInt();
for (int i = 1;i <= n;i++)
for (int j = 1;j <= m;j++)
a[i][j] = in.nextInt();
//f[0]
for (int i = 1;i <= n;i++)
for (int j = 1;j <= m;j++)
f[0][i][j] = Math.max(f[0][i-1][j], f[0][i][j-1])+a[i][j];
//f[1]
for (int i = 1;i <= n;i++)
for (int j = m;j >= 1;j--)
f[1][i][j] = Math.max(f[1][i-1][j], f[1][i][j+1])+a[i][j];
//f[2]
for (int i = n;i >= 1;i--)
for (int j = 1;j <= m;j++)
f[2][i][j] = Math.max(f[2][i][j-1], f[2][i+1][j])+a[i][j];
//f[3]
//f[0]
for (int i = n;i >= 1;i--)
for (int j = m;j >= 1;j--)
f[3][i][j] = Math.max(f[3][i+1][j], f[3][i][j+1])+a[i][j];
int ans = 0;
for (int i = 1;i <= n;i++)
for (int j = 1;j <= m;j++) {
//(i,j)
if (i>=2 && i<=n-1 && j>=2 && j <= m-1) {
//plan 2
int temp0,temp1,temp2,temp3;
temp0 = f[0][i-1][j];
temp1 = f[1][i][j+1];
temp2 = f[2][i][j-1];
temp3 = f[3][i+1][j];
ans = Math.max(ans, temp0+temp1+temp2+temp3);
//plan 3
temp0 = f[0][i][j-1];
temp1 = f[1][i-1][j];
temp2 = f[2][i+1][j];
temp3 = f[3][i][j+1];
ans = Math.max(ans, temp0+temp1+temp2+temp3);
}
}
out.println(ans);
}
}
static class InputReader{
public BufferedReader br;
public StringTokenizer tokenizer;
public InputReader(InputStream ins) {
br = new BufferedReader(new InputStreamReader(ins));
tokenizer = null;
}
public String next(){
while (tokenizer==null || !tokenizer.hasMoreTokens()) {
try {
tokenizer = new StringTokenizer(br.readLine());
}catch(IOException e) {
throw new RuntimeException(e);
}
}
return tokenizer.nextToken();
}
public int nextInt() {
return Integer.parseInt(next());
}
}
}
【Codeforces 429B】Working out的更多相关文章
- 【codeforces 415D】Mashmokh and ACM(普通dp)
[codeforces 415D]Mashmokh and ACM 题意:美丽数列定义:对于数列中的每一个i都满足:arr[i+1]%arr[i]==0 输入n,k(1<=n,k<=200 ...
- 【codeforces 707E】Garlands
[题目链接]:http://codeforces.com/contest/707/problem/E [题意] 给你一个n*m的方阵; 里面有k个联通块; 这k个联通块,每个连通块里面都是灯; 给你q ...
- 【codeforces 707C】Pythagorean Triples
[题目链接]:http://codeforces.com/contest/707/problem/C [题意] 给你一个数字n; 问你这个数字是不是某个三角形的一条边; 如果是让你输出另外两条边的大小 ...
- 【codeforces 709D】Recover the String
[题目链接]:http://codeforces.com/problemset/problem/709/D [题意] 给你一个序列; 给出01子列和10子列和00子列以及11子列的个数; 然后让你输出 ...
- 【codeforces 709B】Checkpoints
[题目链接]:http://codeforces.com/contest/709/problem/B [题意] 让你从起点开始走过n-1个点(至少n-1个) 问你最少走多远; [题解] 肯定不多走啊; ...
- 【codeforces 709C】Letters Cyclic Shift
[题目链接]:http://codeforces.com/contest/709/problem/C [题意] 让你改变一个字符串的子集(连续的一段); ->这一段的每个字符的字母都变成之前的一 ...
- 【Codeforces 429D】 Tricky Function
[题目链接] http://codeforces.com/problemset/problem/429/D [算法] 令Si = A1 + A2 + ... + Ai(A的前缀和) 则g(i,j) = ...
- 【Codeforces 670C】 Cinema
[题目链接] http://codeforces.com/contest/670/problem/C [算法] 离散化 [代码] #include<bits/stdc++.h> using ...
- 【codeforces 515D】Drazil and Tiles
[题目链接]:http://codeforces.com/contest/515/problem/D [题意] 给你一个n*m的格子; 然后让你用1*2的长方形去填格子的空缺; 如果有填满的方案且方案 ...
随机推荐
- 在C#中实现listbox的项上下移动(winform) 标准
在C#中实现listbox的项上下移动(winform) 收藏人:梅毛子360 2013-10-02 | 阅:1 转:2 | 分享 | 来源 usi ...
- 【POJ 3263】 Tallest Cow
[题目链接] http://poj.org/problem?id=3263 [算法] 若A和B两头牛可以互相看见,那么说明中间的牛的高度都至少比它们少1,因此,我们可以引入一个差分数组c 对于每组关系 ...
- [Swift通天遁地]八、媒体与动画-(12)CoreText框架中的字体的FontMetrics布局信息
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★➤微信公众号:山青咏芝(shanqingyongzhi)➤博客园地址:山青咏芝(https://www.cnblogs. ...
- 一款超好用的第三方评论插件--Gitalk
一,使用Gitalk的背景: 1.最近在做一个基于Java的个人博客系统,已经基本完工了,突然发现怎么没有评论的操作,如果再从头开始从数据库开始写的话,花费的代价有点大,于是乎我就在网上寻找一款适合我 ...
- 网络简要<入门篇>
OSI七层 网络的含义:两个不在同一地理位置的主机(终端),通过传输介质和通信协议,实现通信和资源共享. 网络四要素:终端,传输介质 ,通信协议,资源 网络分类: 以范围分类:LAN网(局域网,以太网 ...
- IOS上微信在输入框弹出键盘后,页面不恢复,下方有留白,有弹窗弹出时页面内容感应区域错位
问题说明: ios中,键盘的弹起,页面会往上挪动,使输入框展示在页面中间,键盘隐藏页面会下挪恢复原状. 在微信移动端,ios页面不恢复,下方有留白. 收起键盘的瞬间,如果有弹窗弹出,此时时页面内容应区 ...
- Android内存管理(6)onTrimMemory,onLowMemory,MemoryInfo()
转自: http://www.cnblogs.com/sudawei/p/3527145.html 参考: Android Application生命周期学习 Android中如何查看内存(上) An ...
- <stddef.h>
Common definitions 定义类型: ptrdiff_t 两指针相减的结果,signed integer size_t sizeof操作符的结果,unsigned integer max_ ...
- 字符串String的理解
1.String是一个final的类型 即不可被继承修改,一经生成不可改变.所以在代码中使用String s = s1 + s2;的时候,执行完之后s所指向的是一个新生成的对象,这里有个地方值得注意 ...
- yield让代码更加简洁
不能传入out或ref public IEnumerable<Shop> GetShop() { ; i < ; i++) { yield return new Shop { ID ...