ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#211072 | #1445. 理想的正方形 | three_zero30 | 100 | 571ms | 36648kb | C++11 | 1.4kb | 2024-08-09 10:16:25 | 2024-08-09 10:16:30 |
answer
#include<bits/stdc++.h>
#pragma GCC optimize(2)
#define ll long long
using namespace std;
long long read(){
long long x=0,f=1;char ch=getchar();
while(ch<'0'||ch>'9'){
if(ch=='-')f=-1;
ch=getchar();
}
while(ch>='0'&&ch<='9'){
x=x*10+ch-'0';
ch=getchar();
}
return x*f;
}
const int N=5010;
ll n,m,k,INF=1000000000;
ll w[N][N],minv[N][N];
ll maxv[N][N],que[N];
ll a[N],b[N],c[N],d[N];
void get_max(ll a[],ll f[],ll m){
ll hh=0,tt=-1;
for (register ll i=1;i<=m;++i){
while(hh<=tt&&i-que[hh]>=k) hh++;
while(hh<=tt&&a[i]>=a[que[tt]]) tt--;
que[++tt]=i;
f[i]=a[que[hh]];
}
}
void get_min(ll a[], ll f[], ll m){
ll hh =0,tt=-1;
for(register ll i=1;i<=m;++i){
while(hh<=tt&&i-que[hh]>=k)hh++;
while(hh<=tt&&a[i]<=a[que[tt]])tt--;
que[++tt]=i;
f[i]=a[que[hh]];
}
}
int main(){
n=read();
m=read();
k=read();
for (register ll i=1;i<=n;++i){
for(register ll j=1;j<=m;++j){
w[i][j]=read();
}
}
for (register ll i=1;i<=n;++i){
get_min(w[i],minv[i],m);
get_max(w[i],maxv[i],m);
}
for (register ll i=k;i<=m;++i){
for (register ll j=1;j<=n;++j){
a[j]=maxv[j][i];
b[j]=minv[j][i];
}
get_max(a,c,n);
get_min(b,d,n);
for(register ll j=k;j<=n;++j)INF=min(INF,c[j]-d[j]);
}
cout<<INF;
return 0;
}
详细
小提示:点击横条可展开更详细的信息
Test #1:
score: 10
Accepted
time: 132ms
memory: 36640kb
input:
1000 1000 100 804544523 340648618 718292412 235345736 704741136 942776831 741228920 463473302 677289...
output:
998893495
result:
ok single line: '998893495'
Test #2:
score: 10
Accepted
time: 132ms
memory: 36636kb
input:
1000 1000 100 629053044 957239666 456746076 940194386 201529807 592062148 244394389 825620014 223976...
output:
998862873
result:
ok single line: '998862873'
Test #3:
score: 10
Accepted
time: 0ms
memory: 1236kb
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:
2
result:
ok single line: '2'
Test #4:
score: 10
Accepted
time: 0ms
memory: 2612kb
input:
100 100 10 2 100001 200001 300001 400001 500001 600001 700001 800001 900001 1000001 1100001 1200001 ...
output:
908999
result:
ok single line: '908999'
Test #5:
score: 10
Accepted
time: 87ms
memory: 36648kb
input:
1000 1000 20 1 100001 200001 300001 400001 500001 600001 700001 800001 900001 1000001 1100001 120000...
output:
1901899
result:
ok single line: '1901899'
Test #6:
score: 10
Accepted
time: 35ms
memory: 13052kb
input:
500 500 50 79289095 232165705 955620938 481434262 465576217 112035388 50089892 459799006 181906335 3...
output:
995944328
result:
ok single line: '995944328'
Test #7:
score: 10
Accepted
time: 65ms
memory: 18908kb
input:
500 1000 80 499163842 331022295 940054497 684192083 248823911 842132608 629298697 398526298 98438040...
output:
998299092
result:
ok single line: '998299092'
Test #8:
score: 10
Accepted
time: 64ms
memory: 36640kb
input:
1000 1000 80 102 134 429 251 299 109 264 669 727 296 112 550 270 270 544 660 131 546 968 219 113 678...
output:
998
result:
ok single line: '998'
Test #9:
score: 10
Accepted
time: 20ms
memory: 13048kb
input:
500 500 100 65532583 920409544 753795976 989349545 818384831 778207112 425141881 853270293 542112588...
output:
999172505
result:
ok single line: '999172505'
Test #10:
score: 10
Accepted
time: 36ms
memory: 18908kb
input:
500 1000 100 456896744 779471086 578349238 52507342 192194992 156396237 475084995 775765435 96617474...
output:
998801667
result:
ok single line: '998801667'