Submission #80437

# Submission time Handle Problem Language Result Execution time Memory
80437 2018-10-20T17:34:40 Z igzi Homecoming (BOI18_homecoming) C++17
0 / 100
242 ms 95712 KB
#include <bits/stdc++.h>
#include "homecoming.h"
#define maxN 2000005

using namespace std;

int n,k,i,a[maxN],b[maxN];
long long dp[maxN],sb[maxN],tmp[maxN],p[maxN],q[maxN];

long long dp0(int n,int k,long long a[],long long b[]){
long long i,ans=0;
deque <long long> dq;
sb[n-1]=b[n-1];
for(i=n-2;i>=0;i--) sb[i]=sb[i+1]+b[i];
dp[n-1]=a[n-1]-b[n-1];
tmp[n-1]=max((long long) 0,dp[n-1]);
ans=tmp[n-1];
dq.push_back(n-1);
for(i=n-2;i>=0;i--){
    long long x=dq.front();
    dp[i]=a[i]+dp[x]-sb[i]+sb[x];
    if(i+k<n) dp[i]=max(dp[i],tmp[i+k]+a[i]-sb[i]+sb[i+k]);
    ans=max(ans,dp[i]);
    tmp[i]=ans;
    if(dq.front()==i+k) dq.pop_front();
    while(dq.size() && dp[dq.back()]+sb[dq.back()]<=dp[i]+sb[i]){
        dq.pop_back();
    }
    dq.push_back(i);
}
return ans;
}

long long solve(int n,int k,int a[],int b[]){
long long ans=0,s;
int i,j;
for(j=0;j<k;j++){
s=0;
for(i=0;i<n;i++){
    p[i]=a[(i+j)%n];
    if(i>=k) q[i]=b[(i+j)%n];
    else q[i]=0;
    if(i<k) s+=b[(i+j)%n];
    }
    ans=max(ans,dp0(n,k,p,q)-s);
}
for(i=1;i<k;i++){
    b[n-k+i]+=b[i-1];
}
for(i=k;i<n;i++){
    p[i-k]=a[i];
    q[i-k]=b[i];
}
ans=max(ans,dp0(n-k,k,p,q));
return ans;
}
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Correct 6 ms 516 KB Output is correct
3 Incorrect 3 ms 516 KB Output isn't correct
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Correct 6 ms 516 KB Output is correct
3 Incorrect 3 ms 516 KB Output isn't correct
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 88 ms 24540 KB Output is correct
2 Correct 33 ms 24540 KB Output is correct
3 Correct 242 ms 95712 KB Output is correct
4 Correct 37 ms 95712 KB Output is correct
5 Incorrect 49 ms 95712 KB Output isn't correct
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Correct 6 ms 516 KB Output is correct
3 Incorrect 3 ms 516 KB Output isn't correct
4 Halted 0 ms 0 KB -