当前位置:网站首页>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;
}
边栏推荐
- Excel画图
- In the hot summer, teach you to use Xiaomi smart home accessories + Raspberry Pi 4 to connect to Apple HomeKit
- Flutter learning 2-dart learning
- AUTOCAD——标注关联
- The production method of the powered small sailboat is simple, the production method of the electric small sailboat
- The solution to the failure to read channel information when dedecms generates a message in the background
- write the story about us
- [8.2] Code Source - [Currency System] [Coins] [New Year's Questions (Data Enhanced Edition)] [Three Stages]
- Cron(Crontab)--使用/教程/实例
- 【informix】解决启动报错大全,以及解决办法
猜你喜欢
随机推荐
Flutter learning three-Flutter basic structure and principle
The solution to the failure to read channel information when dedecms generates a message in the background
Homework 8.4 Interprocess Communication Pipes and Signals
How to solve complex distribution and ledger problems?
【cesium】加载并定位 3D Tileset
dedecms报错The each() function is deprecated
Cron(Crontab)--使用/教程/实例
虚证、实证如何鉴别?
使用IDEA连接TDengine服务器
[BJDCTF2020] EasySearch
8.04 Day35-----MVC three-tier architecture
一篇博客通关Redis技术栈
LAB Semaphore Implementation Details
dedecms error The each() function is deprecated
AUTOCAD——标注关联
Flutter TapGestureRecognizer 如何工作
关于sklearn库的安装
Requests库部署与常用函数讲解
MySQL Foundation (1) - Basic Cognition and Operation
flink reads mongodb data source








