【CF】div4 790 D. X-Sum (求矩形里面斜线的和的最大值)

题目 :  https://codeforces.com/contest/1676/problem/D

思想:暴力,但是要注意很多细节,每次把当前点要走的下一步作为起点开始斜线遍历,这样可以有效避免越界问题,并且最后只用加上当前数。

代码:

// Problem: D. X-Sum
// Contest: Codeforces - Codeforces Round 790 (Div. 4)
// URL: https://codeforces.com/contest/1676/problem/D
// Memory Limit: 256 MB
// Time Limit: 2000 ms
// 
// Powered by CP Editor (https://cpeditor.org)

#include<bits/stdc++.h>
using namespace std;

typedef long long ll;

const int N = 210;

int main(){
	int T;
	cin>>T;
	while(T--){
		int n,m;
		cin>>n>>m;
		int a[N][N];
		for(int i=1;i<=n;i++){
			for(int j=1;j<=m;j++){
				cin>>a[i][j];
			}
		}
		int maxv=0;
		for(int i=1;i<=n;i++){
			for(int j=1;j<=m;j++){
				int ans=0;
				int x=i+1,y=j+1;
				while(x<=n&&y<=m){
					ans+=a[x][y];
					x++;
					y++;
				}
				x=i-1,y=j-1;
				while(x>=1&&y>=1){
					ans+=a[x][y];
					x--;
					y--;
				}
				x=i+1,y=j-1;
				while(x<=n&&y>=1){
					ans+=a[x][y];
					x++;
					y--;
				}
				x=i-1,y=j+1;
				while(x>=1&&y<=m){
					ans+=a[x][y];
					x--;
					y++;
				}
				ans+=a[i][j];
				
				maxv=max(maxv,ans);
			}
		}
		cout<<maxv<<"\n";
		
	}

	
	return 0;	

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值