当前位置:网站首页>UVA10827
UVA10827
2022-08-05 05:03:00 【Knife stabs the bear】
#include <iostream>
#include <istream>
#include <sstream>
#include <vector>
#include <stack>
#include <list>
#include <map>
#include <set>
#include <deque>
#include <queue>
#include <cstring>
#include <unordered_map>
#include <unordered_set>
#include <algorithm>
#include <numeric>
#include <chrono>
#include <ctime>
#include <cmath>
#include <cctype>
#include <string>
#include <cstdio>
#include <iomanip>
#include <thread>
#include <mutex>
#include <condition_variable>
#include <functional>
#include <iterator>
using namespace std;
const int maxn = 200,INF = -1e9;
int m[maxn][maxn], sum[maxn][maxn],n;
int main()
{
int t;
cin >> t;
while (t--) {
cin >> n;
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
cin >> m[i][j];
m[i + n][j] = m[i][j + n] = m[i + n][j + n] = m[i][j];
}
}
int len = (n << 1) + 1,ans = INF;
for (int i = 1; i < len; i++) {
for (int j = 1; j < len; j++) {
sum[i][j] = m[i][j] + sum[i - 1][j] + sum[i][j - 1] - sum[i - 1][j - 1];
int a = min(i, n);
int b = min(j, n);
for (int k = 0; k <= a; k++) {
for (int l = 0; l <= b; l++) {
if (!k && !l)continue;
ans = max(sum[i][j] - sum[i - k][j] - sum[i][j - l]+ sum[i - k][j - l],ans);
}
}
}
}
cout << ans << endl;
}
return 0;
}
边栏推荐
- 小程序_动态设置tabBar主题皮肤
- 判断语句_switch与case
- Talk about 20 common problems in data governance
- C#关于set()和get()方法的理解及使用
- mysql数据库表什么字段类型的存储长度最大?
- Qt制作18帧丘比特表白意中人、是你的丘比特嘛!!!
- Is the NPDP certificate high in gold content?Compared to PMP?
- Please write the SparkSQL statement
- Four-digit display header design
- u-boot in u-boot, dm-pre-reloc
猜你喜欢
随机推荐
Redis - 13、开发规范
Detailed explanation of each module of ansible
[Surveying] Quick Summary - Excerpt from Gaoshu Gang
重新审视分布式系统:永远不会有完美的一致性方案……
Mini Program_Dynamic setting of tabBar theme skin
Machine Learning Overview
服务器磁盘阵列
There are a lot of 4T hard drives remaining, prompting "No space left on device" insufficient disk space
uva1325
AUTOCAD - dimension association
【转】什么是etcd
u-boot debugging and positioning means
Shell(4) Conditional Control Statement
What is ASEMI photovoltaic diode, the role of photovoltaic diode
开发属于自己的node包
App快速开发建设心得:小程序+自定义插件的重要性
逆向理论知识4
基于Web的商城后台管理系统的设计与实现
Flutter学习-开篇
[BSidesCF 2019] Kookie







