UOJ Logo

NOI.AC

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#211091#3801. Thief Mastersmengxiangjia8013415ms450488kbC++116.1kb2024-08-09 11:17:072024-08-09 12:46:07

answer

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#ifdef ONLINE_JUDGE
#define getchar getchar_unlocked
#endif
namespace FastIO
{
    char write_cache[40];
    template <class T>
    inline const T read() noexcept
    {
        T x(0);
        char ch(getchar());
        bool f(0);
        while (ch < '0' || ch > '9')
            f ^= ch == '-', ch = getchar();
        while (ch >= '0' && ch <= '9')
            x = (x << 1) + (x << 3) + (ch ^ 48), ch = getchar();
        return f ? -x : x;
    }
    template <class T>
    inline const void read(T &x) noexcept
    {
        x = 0;
        char ch(getchar());
        bool f(0);
        while (ch < '0' || ch > '9')
            f ^= ch == '-', ch = getchar();
        while (ch >= '0' && ch <= '9')
            x = (x << 1) + (x << 3) + (ch ^ 48), ch = getchar();
        x = f ? -x : x;
    }
    template <class T, class... P>
    inline const void read(T &x, P &...ark) noexcept
    {
        x = 0;
        char ch(getchar());
        bool f(0);
        while (ch < '0' || ch > '9')
            f ^= ch == '-', ch = getchar();
        while (ch >= '0' && ch <= '9')
            x = (x << 1) + (x << 3) + (ch ^ 48), ch = getchar();
        x = f ? -x : x;
        read(ark...);
    }
    template <class T>
    inline const void readu(T &x) noexcept
    {
        x = 0;
        char ch(getchar());
        bool f(0);
        while (ch < '0' || ch > '9')
            ch = getchar();
        while (ch >= '0' && ch <= '9')
            x = (x << 1) + (x << 3) + (ch ^ 48), ch = getchar();
    }
    template <class T>
    inline const T readu() noexcept
    {
        T x(0);
        char ch(getchar());
        bool f(0);
        while (ch < '0' || ch > '9')
            ch = getchar();
        while (ch >= '0' && ch <= '9')
            x = (x << 1) + (x << 3) + (ch ^ 48), ch = getchar();
        return x;
    }
    template <class T, class... P>
    inline const void readu(T &x, P &...ark) noexcept
    {
        x = 0;
        char ch(getchar());
        bool f(0);
        while (ch < '0' || ch > '9')
            ch = getchar();
        while (ch >= '0' && ch <= '9')
            x = (x << 1) + (x << 3) + (ch ^ 48), ch = getchar();
        readu(ark...);
    }
    template <class T>
    inline const void readArr(T *begin, T *end) noexcept
    {
        while (begin < end)
        {
            *begin = 0;
            char ch(getchar());
            bool f(0);
            while (ch < '0' || ch > '9')
                f ^= ch == '-', ch = getchar();
            while (ch >= '0' && ch <= '9')
                *begin = (*begin << 1) + (*begin << 3) + (ch ^ 48), ch = getchar();
            *begin = f ? -*begin : *begin;
        }
    }
    template <class T>
    inline const void readArr(T *begin, int cnt) noexcept
    {
        while (cnt--)
        {
            read(*begin);
            ++begin;
        }
    }
    template <class T>
    inline const void write(T x) noexcept
    {
        if (x < 0)
            putchar('-'), x = -x;
        int cnt = 0;
        while (x)
            write_cache[cnt++] = x % 10 ^ 48, x /= 10;
        if (!cnt)
            putchar('0');
        else
            while (cnt--)
                putchar(write_cache[cnt]);
    }
    template <char end = ' ', class T, class... ARK>
    inline const void write(T &x, ARK &...ark) noexcept
    {
        write(x);
        putchar(end);
        write(ark...);
    }
    template <char end = '\n', class T>
    inline const void println(T x) noexcept
    {
        if (x < 0)
            putchar('-'), x = -x;
        int cnt = 0;
        while (x)
            write_cache[cnt++] = x % 10 ^ 48, x /= 10;
        if (!cnt)
            putchar('0');
        else
            while (cnt--)
                putchar(write_cache[cnt]);
        putchar(end);
    }
    template <char sep = ' ', char endl = '\n', class T>
    inline const void writeArr(T *begin, T *end) noexcept
    {
        while (begin < end)
            write(*begin), putchar(sep), ++begin;
        putchar(endl);
    }
    template <char sep = ' ', char end = '\n', class T>
    inline const void writeArr(T *arr, int cnt)
    {
        while (cnt--)
        {
            write(*arr);
            putchar(sep);
            ++arr;
        }
        putchar(end);
    }
}

#define maxn 5001
int n, m, k, front, FRONT, back, BACK, ans;
int a[maxn][maxn], q[maxn], Q[maxn];
int x[maxn][maxn], X[maxn][maxn];
int y[maxn][maxn], Y[maxn][maxn];
int main()
{
    FastIO::read(n, m, k);
    for (int i = 1; i <= n; ++i)
        FastIO::readArr(a[i], m);
    for (int i = 1; i <= n; ++i)
    {
        FRONT = BACK = front = back = Q[1] = q[1] = 1;
        for (int j = 2; j <= m; ++j)
        {
            while (a[i][j] >= a[i][Q[BACK]] && FRONT <= BACK)
                --BACK;
            while (a[i][j] <= a[i][q[back]] && front <= back)
                --back;
            ++BACK, ++back, Q[BACK] = j, q[back] = j;
            while (j - Q[FRONT] >= k)
                ++FRONT;
            while (j - q[front] >= k)
                ++front;
            if (j >= k)
                X[i][j - k + 1] = a[i][Q[FRONT]], x[i][j - k + 1] = a[i][q[front]];
        }
    }
    for (int i = 1; i <= m - k + 1; ++i)
    {
        FRONT = BACK = front = back = Q[1] = q[1] = 1;
        for (int j = 2; j <= n; ++j)
        {
            while (X[j][i] >= X[Q[BACK]][i] && FRONT <= BACK)
                --BACK;
            while (x[j][i] <= x[q[back]][i] && front <= back)
                --back;
            ++BACK, ++back, Q[BACK] = j, q[back] = j;
            while (j - Q[FRONT] >= k)
                ++FRONT;
            while (j - q[front] >= k)
                ++front;
            if (j >= k)
                Y[j - k + 1][i] = X[Q[FRONT]][i], y[j - k + 1][i] = x[q[front]][i];
        }
    }
    ans = INT_MAX;
    for (int i = 1; i <= n - k + 1; ++i)
        for (int j = 1; j <= m - k + 1; ++j)
            ans = min(ans, Y[i][j] - y[i][j]);
    FastIO::println(ans);
    return 0;
}

Details

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

Test #1:

score: 10
Accepted
time: 2516ms
memory: 450484kb

input:

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

output:

999988492

result:

ok single line: '999988492'

Test #2:

score: 0
Wrong Answer
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:

1

result:

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

Test #3:

score: 0
Wrong Answer
time: 0ms
memory: 3244kb

input:

100 100 10
2 100001 200001 300001 400001 500001 600001 700001 800001 900001 1000001 1100001 1200001 ...

output:

909000

result:

wrong answer 1st lines differ - expected: '908999', found: '909000'

Test #4:

score: 10
Accepted
time: 2155ms
memory: 450484kb

input:

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

output:

9999

result:

ok single line: '9999'

Test #5:

score: 20
Accepted
time: 2026ms
memory: 450488kb

input:

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

output:

9999

result:

ok single line: '9999'

Test #6:

score: 10
Accepted
time: 2112ms
memory: 450488kb

input:

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

output:

9999

result:

ok single line: '9999'

Test #7:

score: 10
Accepted
time: 2357ms
memory: 450484kb

input:

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

output:

21813

result:

ok single line: '21813'

Test #8:

score: 20
Accepted
time: 2249ms
memory: 450484kb

input:

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

output:

21811

result:

ok single line: '21811'