UOJ Logo

NOI.AC

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#211039#3801. Thief Mastersfx_happy202237ms9232kbC++112.1kb2024-08-09 09:24:392024-08-09 12:33:00

answer

#include<bits/stdc++.h>
#define ll long long 
using namespace std;

const ll inf=1e16+39;

int n,m,k;
ll a[1010][1010];
ll b1[1010][1010],b2[1010][1010],b3[1010][1010],b4[1010][1010];
deque<pair<int,int>> q1,q2;

int main()
{
    std::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];
    
    for(int i=1;i<=n;i++)
    {
        for(int j=1;j<=m;j++)
        {
            while (q1.size()>0&&q1.back().first<a[i][j])
                q1.pop_back();
            q1.push_back({a[i][j],j});
            while (q1.size()>0&&q1.front().second<=j-k)
                q1.pop_front();
            if(j>=k)
                b1[i][j-k+1]=q1.front().first;
        }
        for(int j=1;j<=m;j++)
        {
            while (q2.size()>0&&q2.back().first>a[i][j])
                q2.pop_back();
            q2.push_back({a[i][j],j});
            while (q2.size()>0&&q2.front().second<=j-k)
                q2.pop_front();
            if(j>=k)
                b2[i][j-k+1]=q2.front().first;
        }
        q1.clear(), q2.clear();
    }

    q1.clear(),q2.clear();
    for(int j=1;j<=m-k+1;j++)
    {
        for(int i=1;i<=n;i++)
        {
            while (q1.size()>0&&q1.back().first<b1[i][j])
                q1.pop_back();
            q1.push_back({b1[i][j],i});
            while (q1.size()>0&&q1.front().second<=i-k)
                q1.pop_front();
            if(i>=k)
                b3[i-k+1][j]=q1.front().first;
        }
        for(int i=1;i<=n;i++)
        {
            while (q2.size()>0&&q2.back().first>b2[i][j])
                q2.pop_back();
            q2.push_back({b2[i][j],i});
            while (q2.size()>0&&q2.front().second<=i-k)
                q2.pop_front();
            if(i>=k)
                b4[i-k+1][j]=q2.front().first;
        }
        q1.clear(), q2.clear();
    }

    ll ans=inf;
    for(int i=1;i<=n-k+1;i++)
        for(int j=1;j<=m-k+1;j++)
            ans=min(ans,b3[i][j]-b4[i][j]);
    cout<<ans;
    return 0;
}

详细

小提示:点击横条可展开更详细的信息

Test #1:

score: 0
Wrong Answer
time: 472ms
memory: 9228kb

input:

5000 5000 1000
112860841 963292630 950228017 843100821 628111020 568250408 901169419 322571542 98853...

output:

10000000000000040

result:

wrong answer 1st lines differ - expected: '999988492', found: '10000000000000040'

Test #2:

score: 10
Accepted
time: 0ms
memory: 1352kb

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: 3ms
memory: 3548kb

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
Wrong Answer
time: 333ms
memory: 9232kb

input:

5000 5000 1000
8974 8293 3530 8179 6181 2983 6500 3525 2603 1983 6720 5938 9247 2494 4568 9909 3852 ...

output:

10000000000000040

result:

wrong answer 1st lines differ - expected: '9999', found: '10000000000000040'

Test #5:

score: 0
Wrong Answer
time: 334ms
memory: 9228kb

input:

5000 5000 1000
3206 5640 1070 5846 5931 3274 6116 1741 543 6399 1626 115 92 3037 464 100 3700 2694 5...

output:

10000000000000040

result:

wrong answer 1st lines differ - expected: '9999', found: '10000000000000040'

Test #6:

score: 0
Wrong Answer
time: 323ms
memory: 9228kb

input:

5000 5000 1000
9041 1397 3723 7115 4298 5210 8033 5608 6711 6539 7140 5331 4282 2599 59 9363 5817 25...

output:

10000000000000040

result:

wrong answer 1st lines differ - expected: '9999', found: '10000000000000040'

Test #7:

score: 0
Wrong Answer
time: 382ms
memory: 9228kb

input:

5000 5000 1000
19636 14616 3910 15971 9484 16390 2221 13667 5771 1364 2375 15202 16870 7107 13189 16...

output:

10000000000000040

result:

wrong answer 1st lines differ - expected: '21813', found: '10000000000000040'

Test #8:

score: 0
Wrong Answer
time: 390ms
memory: 9232kb

input:

5000 5000 1000
3628 1018 3668 18160 14975 18599 9087 10641 19468 16400 19072 16984 6583 7925 19853 1...

output:

10000000000000040

result:

wrong answer 1st lines differ - expected: '21811', found: '10000000000000040'