ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#211062 | #3801. Thief Masters | _Alexande_ | 20 | 5ms | 2696kb | C++11 | 2.1kb | 2024-08-09 09:56:58 | 2024-08-09 12:40:34 |
answer
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define fir first
#define sec second
#define mkp make_pair
#define pb push_back
#define lep( i, l, r ) for ( int i = ( l ); i <= ( r ); ++ i )
#define rep( i, r, l ) for ( int i = ( r ); i >= ( l ); -- i )
typedef long long ll;
typedef long double ld;
typedef pair < int, int > pii;
char _c; bool _f; template < class type > inline void read ( type &x ) {
_f = 0, x = 0;
while ( _c = getchar (), !isdigit ( _c ) ) if ( _c == '-' ) _f = 1;
while ( isdigit ( _c ) ) x = x * 10 + _c - '0', _c = getchar (); if ( _f ) { x = -x; }
}
template < class type > inline void chkmin ( type &x, type y ) { x = ( x <= y ? x : y ); }
template < class type > inline void chkmax ( type &x, type y ) { x = ( x >= y ? x : y ); }
const int N = 5005;
int n, m, k, ans = 1e18;
int a[N][N], mini[N][N], maxi[N][N], tmp[N], tmp_maxi[N], tmp_mini[N];
int q[N];
void help ( int n, int a[], int res[], int id ) {
int head = 0, tail = -1;
for ( int i = 1; i <= n; i ++ ) {
while ( head <= tail && q[head] < i - k + 1 ) {
head ++;
}
while ( head <= tail && ( !id ? a[q[tail]] <= a[i] : a[q[tail]] >= a[i] ) ) {
tail --;
}
q[++ tail] = i;
res[i] = a[q[head]];
}
}
void Solve () {
ios :: sync_with_stdio ( false );
cin.tie ( 0 ), cout.tie ( 0 );
cin >> n >> m >> k;
for ( int i = 1; i <= n; i ++ ) {
for ( int j = 1; j <= m; j ++ ) {
cin >> a[i][j];
}
help ( m, a[i], maxi[i], 0 );
help ( m, a[i], mini[i], 1 );
}
for ( int i = k; i <= m; i ++ ) {
for ( int j = 1; j <= n; j ++ ) {
tmp[j] = maxi[j][i];
}
help ( n, tmp, tmp_maxi, 0 );
for ( int j = 1; j <= n; j ++ ) {
tmp[j] = mini[j][i];
}
help ( n, tmp, tmp_mini, 1 );
for ( int j = k; j <= n; j ++ ) {
ans = min ( ans, tmp_maxi[j] - tmp_mini[j] );
}
}
cout << ans;
}
signed main () {
#ifdef judge
freopen ( "Code.in", "r", stdin );
freopen ( "Code.out", "w", stdout );
freopen ( "Code.err", "w", stderr );
#endif
Solve ();
return 0;
}
详细
小提示:点击横条可展开更详细的信息
Test #1:
score: 0
Memory Limit Exceeded
input:
5000 5000 1000 112860841 963292630 950228017 843100821 628111020 568250408 901169419 322571542 98853...
output:
result:
Test #2:
score: 10
Accepted
time: 1ms
memory: 1320kb
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 #3:
score: 10
Accepted
time: 4ms
memory: 2696kb
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 #4:
score: 0
Memory Limit Exceeded
input:
5000 5000 1000 8974 8293 3530 8179 6181 2983 6500 3525 2603 1983 6720 5938 9247 2494 4568 9909 3852 ...
output:
result:
Test #5:
score: 0
Memory Limit Exceeded
input:
5000 5000 1000 3206 5640 1070 5846 5931 3274 6116 1741 543 6399 1626 115 92 3037 464 100 3700 2694 5...
output:
result:
Test #6:
score: 0
Memory Limit Exceeded
input:
5000 5000 1000 9041 1397 3723 7115 4298 5210 8033 5608 6711 6539 7140 5331 4282 2599 59 9363 5817 25...
output:
result:
Test #7:
score: 0
Memory Limit Exceeded
input:
5000 5000 1000 19636 14616 3910 15971 9484 16390 2221 13667 5771 1364 2375 15202 16870 7107 13189 16...
output:
result:
Test #8:
score: 0
Memory Limit Exceeded
input:
5000 5000 1000 3628 1018 3668 18160 14975 18599 9087 10641 19468 16400 19072 16984 6583 7925 19853 1...