ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#211148 | #3801. Thief Masters | 18915523188 | 0 | 20514ms | 294720kb | C++ | 1.9kb | 2024-08-09 12:28:27 | 2024-08-09 12:58:02 |
answer
#include <bits/stdc++.h>
#define ll long long
#pragma GCC optimeze(2)
using namespace std;
int a,b,n,num[5005][5005],ma,mi,maa[5005][5005],mia[5005][5005],ans=-1,la,ra,li,ri;
struct s{
int x,ta;
}qa[5005],qi[5005];
void fff(){
for(int i=1;i<=a-n+1;i++){
for(int j=1;j<=b-n+1;j++){
ma=-1;
mi=-1;
for(int x=0;x<n;x++){
for(int y=0;y<n;y++){
if(ma<num[x][y]){
ma=num[x][y];
}if(mi==-1||mi>num[x][y]){
mi=num[x][y];
}
}
}
if(ans==-1||ans>ma-mi){
ans=ma-mi;
}
}
}
cout<<ans;
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin>>a>>b>>n;
for(int i=1;i<=a;i++){
for(int j=1;j<=b;j++){
cin>>num[i][j];
}
}
if(a<=100&&b<=100&&n<=10){
fff();
return 0;
}
la=1;
ra=0;
li=1;
ri=0;
for(int i=1;i<=a;i++){
for(int j=1;j<=b;j++){
while(la<=ra&&qa[ra].x<num[i][j]){
ra--;
}
ra++;
qa[ra].x=num[i][j];
qa[ra].ta=j;
if(j>n){
if(qa[la].ta<=j-n){
la++;
}
maa[i][j]=qa[la].x;
}
while(li<=ri&&qi[ri].x>num[i][j]){
ri--;
}
ri++;
qi[ri].x=num[i][j];
qi[ri].ta=j;
if(j>=n){
if(qi[li].ta<=j-n){
la++;
}
mia[i][j]=qi[li].x;
}
}
}
for(int i=n;i<=b;i++){
for(int j=1;j<=a;j++){
while(la<=ra&&qa[ra].x<maa[j][i]){
ra--;
}
ra++;
qa[ra].x=maa[i][j];
qa[ra].ta=j;
if(j>n){
if(qa[la].ta<=j-n){
la++;
}
mia[j][i]=qa[la].x;
}
while(li<=ri&&qi[ri].x<mia[j][i]){
ri--;
}
ri++;
qi[ri].x=mia[j][i];
qi[ri].ta=j;
if(j>n){
if(qi[li].ta<=j-n){
li++;
}
mia[j][i]=qi[li].x;
}
}
}
for(int i=n;i<=a;i++){
for(int j=n;j<=b;j++){
if(ans==-1||ans>maa[i][j]-mia[i][j]){
ans=maa[i][j]-mia[i][j];
}
}
}
cout<<ans;
return 0;
}
详细
小提示:点击横条可展开更详细的信息
Test #1:
score: 0
Wrong Answer
time: 4025ms
memory: 294624kb
input:
5000 5000 1000 112860841 963292630 950228017 843100821 628111020 568250408 901169419 322571542 98853...
output:
-999999995
result:
wrong answer 1st lines differ - expected: '999988492', found: '-999999995'
Test #2:
score: 0
Wrong Answer
time: 0ms
memory: 1276kb
input:
5 4 2 1 2 5 6 0 17 16 0 16 17 0 1 2 10 2 1 1 2 3 2
output:
1
result:
wrong answer 1st lines differ - expected: '2', found: '1'
Test #3:
score: 0
Wrong Answer
time: 5ms
memory: 1704kb
input:
100 100 10 2 100001 200001 300001 400001 500001 600001 700001 800001 900001 1000001 1100001 1200001 ...
output:
808001
result:
wrong answer 1st lines differ - expected: '908999', found: '808001'
Test #4:
score: 0
Wrong Answer
time: 3140ms
memory: 294624kb
input:
5000 5000 1000 8974 8293 3530 8179 6181 2983 6500 3525 2603 1983 6720 5938 9247 2494 4568 9909 3852 ...
output:
-10000
result:
wrong answer 1st lines differ - expected: '9999', found: '-10000'
Test #5:
score: 0
Wrong Answer
time: 3209ms
memory: 294720kb
input:
5000 5000 1000 3206 5640 1070 5846 5931 3274 6116 1741 543 6399 1626 115 92 3037 464 100 3700 2694 5...
output:
-10000
result:
wrong answer 1st lines differ - expected: '9999', found: '-10000'
Test #6:
score: 0
Wrong Answer
time: 3241ms
memory: 294720kb
input:
5000 5000 1000 9041 1397 3723 7115 4298 5210 8033 5608 6711 6539 7140 5331 4282 2599 59 9363 5817 25...
output:
-10000
result:
wrong answer 1st lines differ - expected: '9999', found: '-10000'
Test #7:
score: 0
Wrong Answer
time: 3719ms
memory: 294716kb
input:
5000 5000 1000 19636 14616 3910 15971 9484 16390 2221 13667 5771 1364 2375 15202 16870 7107 13189 16...
output:
-29690
result:
wrong answer 1st lines differ - expected: '21813', found: '-29690'
Test #8:
score: 0
Wrong Answer
time: 3175ms
memory: 294720kb
input:
5000 5000 1000 3628 1018 3668 18160 14975 18599 9087 10641 19468 16400 19072 16984 6583 7925 19853 1...
output:
-29717
result:
wrong answer 1st lines differ - expected: '21811', found: '-29717'