Submission #965652

#TimeUsernameProblemLanguageResultExecution timeMemory
965652phoenix0423Garden (JOI23_garden)C++17
75 / 100
3099 ms196504 KiB
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll, ll> pll;
#define fastio ios::sync_with_stdio(false), cin.tie(0)
#pragma GCC optimize("Ofast,unroll-loops,O3")
#pragma GCC target("avx,avx2")
#define pb push_back
#define eb emplace_back
#define f first
#define s second
// #define int long long
#define lowbit(x) x&-x

namespace{
const int maxn = 5000 + 5;
int a[maxn][maxn], dp[maxn][maxn], h[maxn], c[maxn], mx[maxn * 2], st[maxn * 2];

void main1(void){
    fastio;
    int n, m, d;
    cin>>n>>m>>d;
    for(int i = 0; i < n; i++){
        int x, y;
        cin>>x>>y;
        h[x] |= 1;
        c[y] |= 1;
    }
    for(int i = 0; i < m; i++){
        int x, y;
        cin>>x>>y;
        a[x][y] = 2;
    }
    auto cal = [&](int x, int y) -> int {
        if(x <= 0 || y <= 0) return 0;
        // cout<<"cal : "<<x<<" "<<y<<"\n";
        y = min(y, d - 1);
        x = min(x, d - 1);
        return (x + y) * d - x * y;
    };
    int ans = 0;
    for(int j = 2 * d - 1; j >= 0; j--){
        int tj = j;
        if(j >= d) j -= d;
        if(c[j]){
            j = tj;
            continue;
        }
        for(int i = 0; i < d; i++){
            if(h[i] || a[i][j]) continue;
            int nxt = j == d - 1 ? 0 : j + 1;
            dp[i][j] = dp[i][nxt] + 1;
            // cout<<"ok : "<<i<<" "<<j<<" "<<dp[i][j]<<"\n";
        }
        int top = 0;
        for(int i = 0; i < 2 * d; i++){
            while(top){
                int cur = st[top];
                if(dp[cur - (cur >= d ? d : 0)][j] <= dp[i - (i >= d ? d : 0)][j]) break;
                int id = cur - (cur >= d ? d : 0); top--;
                ans = max(ans, cal(dp[id][j], mx[cur] + (i - cur) - 1));
            }
            mx[i] = (top ? i - st[top] : i + 1);
            st[++top] = i;
        }
        while(top){
            int cur = st[top];
            ans = max(ans, cal(dp[cur - (cur >= d ? d : 0)][j], mx[cur] + 2 * d - cur - 1));
            top--;
        }
        j = tj;
    }
    ans = d * d - ans;
    int cur = 0;
    for(int i = 0; i < d; i++){
        if(h[i]) cur = i + 1;
    }
    for(int i = 0; i < d; i++){
        ans = min(ans, d * cur);
        if(!h[i]) cur--;
        else cur = d;
    }
    cur = 0;
    for(int i = 0; i < d; i++){
        if(c[i]) cur = i + 1;
    }
    for(int i = 0; i < d; i++){
        ans = min(ans, d * cur);
        if(!c[i]) cur--;
        else cur = d;
    }
    ans = min(ans, d * cur);
    cout<<ans<<"\n";
}
}
int main(){
    main1();
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...