当前位置:网站首页>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;
}
边栏推荐
- After controlling the export file in MySQL, it becomes \N. Is there any solution?
- Visibility of multi-column attribute column elements: display, visibility, opacity, vertical alignment: vertical-align, z-index The larger it is, the more it will be displayed on the upper layer
- App快速开发建设心得:小程序+自定义插件的重要性
- 【cesium】加载并定位 3D Tileset
- dedecms error The each() function is deprecated
- Flutter学习5-集成-打包-发布
- Redis哨兵模式配置文件详解
- Cron(Crontab)--use/tutorial/example
- ansible各个模块详解
- upload上传图片到腾讯云,如何上传图片
猜你喜欢

Redis哨兵模式配置文件详解

【学习笔记之菜Dog学C】动态内存管理之经典笔试题

结构光三维重建(一)条纹结构光三维重建

逆向理论知识4

雷克萨斯lm的安全性到底体现在哪里?一起来看看吧

There are a lot of 4T hard drives remaining, prompting "No space left on device" insufficient disk space

WPF中DataContext作用

【cesium】加载并定位 3D Tileset

MySQL Foundation (1) - Basic Cognition and Operation

About the installation of sklearn library
随机推荐
重新审视分布式系统:永远不会有完美的一致性方案……
JeeSite New Report
Cron(Crontab)--use/tutorial/example
算法---一和零(Kotlin)
结构光三维重建(二)线结构光三维重建
Flutter TapGestureRecognizer 如何工作
雷克萨斯lm的安全性到底体现在哪里?一起来看看吧
u-boot debugging and positioning means
[cesium] element highlighting
【转】什么是etcd
Excel Paint
[BJDCTF2020] EasySearch
电话溥功能
software management rpm
Cryptography Series: PEM and PKCS7, PKCS8, PKCS12
关于sklearn库的安装
University Physics---Particle Kinematics
2023年信息与通信工程国际会议(JCICE 2023)
How does the Flutter TapGestureRecognizer work
虚证、实证如何鉴别?