uva 10827 - Maximum sum on a torus
Output: Standard Output
A grid that wraps both horizontally and vertically is called a torus. Given a torus where each cell contains an integer, determine the sub-rectangle with the largest sum. The sum of a sub-rectangle is the sum of all the elements in that rectangle. The grid below shows a torus where the maximum sub-rectangle has been shaded.
일
-1
0
0
-4
이
삼
-2
-3
이
사
일
-1
오
0
삼
-2
일
-3
이
-3
이
사
일
-4
Input
The first line in the input contains the number of test cases (at most 18). Each case starts with an integer N (1≤N≤75) specifying the size of the torus (always square). Then follows N lines describing the torus, each line containing N integers between -100 and 100, inclusive.
Output
For each test case, output a line containing a single integer: the maximum sum of a sub-rectangle within the torus.
Sample Input Output for Sample Input 2
5
1 -1 0 0 -4
2 3 -2 -3 2
4 1 -1 5 0
3 -2 1 -3 2
-3 2 4 1 -4
3
1 2 3
4 5 6
7 8 9
15
45
Problem setter: Jimmy Mårdell
Special Thanks: Derek Kisman, Md. Kamruzzaman uva108 강화판, 직사각형은 순환적이다. 세 개를 추가한다. 직감은 우리가 먼저 나타날 수 있는 모든 직사각형을 하나하나 열거한 다음에 108의 코드를 씌우고 과감한 TLD를 써서 모든 줄의 조합을 약간 최적화시키거나 가장 큰 서열의 시작점을 하나하나 계산하는 것을 생각하게 한다. 시간이 지나갔다.#include<stdio.h>
#include<string.h>
#define inf -9999999
int b[200],n;
int count()
{
int i,j,f=1,max=inf,sum;
for (i=1;i<=n;i++)
{
if (b[i]>max) max=b[i];
if (b[i]>=0) f=0;
}
if (f) return max;
for (j=1;j<=n;j++)
{
sum=0;
for (i=0;i<n;i++)
{
sum=sum+b[i+j];
if (sum>max) max=sum;
if (sum<0) sum=0;
}
}
return max;
}
int main()
{
int T,i,j,p,q,k,t,a[200][200],max,ans,m;
scanf("%d
",&T);
while (T--)
{
scanf("%d",&n);
for (i=1;i<=n;i++)
for (j=1;j<=n;j++)
{
scanf("%d",&a[i][j]);
a[i+n][j]=a[i][j];
a[i][j+n]=a[i][j];
a[i+n][j+n]=a[i][j];
}
max=inf;
for (k=0;k<n;k++)
{
for (i=1;i<=2*n;i++)
{
if (i+k<=2*n)
{
memset(b,0,sizeof(b));
for (j=i;j<=i+k;j++)
for (t=1;t<=2*n;t++)
b[t]+=a[j][t];
ans=count();
if (ans>max) max=ans;
}
}
}
printf("%d
",max);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
깨끗한 것을 보고 싶기 때문에 최적화 함수의 벤치마크에 이용되는 함수의 가시화를 해 보았다
결정되지 않음 (자기 만족)
「헤이 이런 거 있어」라고 생각하는 사람
최적화 함수란?
거친 이미지로
1) x + 10 = 25
2) x + 60 = 15
3) x + 45 = 60
의 x를 기계에 구할 때 정확하게 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.
2
5
1 -1 0 0 -4
2 3 -2 -3 2
4 1 -1 5 0
3 -2 1 -3 2
-3 2 4 1 -4
3
1 2 3
4 5 6
7 8 9
15
#include<stdio.h>
#include<string.h>
#define inf -9999999
int b[200],n;
int count()
{
int i,j,f=1,max=inf,sum;
for (i=1;i<=n;i++)
{
if (b[i]>max) max=b[i];
if (b[i]>=0) f=0;
}
if (f) return max;
for (j=1;j<=n;j++)
{
sum=0;
for (i=0;i<n;i++)
{
sum=sum+b[i+j];
if (sum>max) max=sum;
if (sum<0) sum=0;
}
}
return max;
}
int main()
{
int T,i,j,p,q,k,t,a[200][200],max,ans,m;
scanf("%d
",&T);
while (T--)
{
scanf("%d",&n);
for (i=1;i<=n;i++)
for (j=1;j<=n;j++)
{
scanf("%d",&a[i][j]);
a[i+n][j]=a[i][j];
a[i][j+n]=a[i][j];
a[i+n][j+n]=a[i][j];
}
max=inf;
for (k=0;k<n;k++)
{
for (i=1;i<=2*n;i++)
{
if (i+k<=2*n)
{
memset(b,0,sizeof(b));
for (j=i;j<=i+k;j++)
for (t=1;t<=2*n;t++)
b[t]+=a[j][t];
ans=count();
if (ans>max) max=ans;
}
}
}
printf("%d
",max);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
깨끗한 것을 보고 싶기 때문에 최적화 함수의 벤치마크에 이용되는 함수의 가시화를 해 보았다결정되지 않음 (자기 만족) 「헤이 이런 거 있어」라고 생각하는 사람 최적화 함수란? 거친 이미지로 1) x + 10 = 25 2) x + 60 = 15 3) x + 45 = 60 의 x를 기계에 구할 때 정확하게 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.