Submission #965614

#TimeUsernameProblemLanguageResultExecution timeMemory
965614phoenix0423Garden (JOI23_garden)C++17
75 / 100
3041 ms396948 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")
#define pb push_back
#define eb emplace_back
#define f first
#define s second
#define int long long
#define lowbit(x) x&-x
const int maxn = 5000 + 5;
const int INF = 1e18;
int a[maxn][maxn], dp[maxn][maxn], h[maxn], c[maxn], mx[maxn * 2];

signed main(void){
    fastio;
    int n, m, d;
    cin>>n>>m>>d;
    set<int> cx, cy;
    for(int i = 0; i < n; i++){
        int x, y;
        cin>>x>>y;
        cx.insert(x), cy.insert(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";
        }
        vector<int> st;
        for(int i = 0; i < 2 * d; i++){
            while(st.size() && dp[st.back() - (st.back() >= d ? d : 0)][j] > dp[i - (i >= d ? d : 0)][j]){
                int id = st.back() - (st.back() >= d ? d : 0), org = st.back(); st.pop_back();
                ans = max(ans, cal(dp[id][j], mx[org] + (i - org) - 1));
            }
            mx[i] = (st.size() ? i - st.back() : i + 1);
            st.pb(i);
        }
        while(!st.empty()){
            // cout<<"put : "<<st.back() - (st.back() >= d) * d<<"\n";
            ans = max(ans, cal(dp[st.back() - (st.back() >= d ? d : 0)][j], mx[st.back()] + 2 * d - st.back() - 1));
            st.pop_back();
        }
        j = tj;
    }
    ans = d * d - ans;
    int cur = *(cx.rbegin()) + 1;
    int id = 0;
    for(int i = 0; i < d; i++){
        ans = min(ans, d * cur);
        if(!cx.count(i)) cur--;
        else cur = d;
    }
    cur = *(cy.rbegin()) + 1;
    for(int i = 0; i < d; i++){
        ans = min(ans, d * cur);
        if(!cy.count(i)) cur--;
        else cur = d;
    }
    ans = min(ans, d * cur);
    cout<<ans<<"\n";
}

Compilation message (stderr)

garden.cpp: In function 'int main()':
garden.cpp:73:9: warning: unused variable 'id' [-Wunused-variable]
   73 |     int id = 0;
      |         ^~
#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...