Submission #366827

# Submission time Handle Problem Language Result Execution time Memory
366827 2021-02-15T10:42:21 Z mickeyandkaka Feast (NOI19_feast) C++17
18 / 100
112 ms 14828 KB
//{{{
#include <bits/stdc++.h>
using namespace std;
using LL = long long;
using VLL = vector<LL>;
using vi = vector<int>;
using pii = pair<int, int>;
#define sz(x) (int)((x).size())
#define all(x) (x).begin(), (x).end()
#define clr(a, b) memset(a, b, sizeof(a))
#ifdef LOCAL
#include "prettyprint.hpp"
// clang-format off
void _print() { cerr << "]\033[0m\n"; }
template <typename T> void __print(T x) { cerr << x; }
template <typename T, typename... V> void _print(T t, V... v) { __print(t); if (sizeof...(v)) cerr << ", "; _print(v...); }
#define debug(x...) cerr << "\033[1;34m[" << #x << "] = \033[1;32m["; _print(x)
#define debug_arr(x...) cerr << "\033[1;34m[" << #x << "] = \033[1;32m" << (x) << "\033[0m\n"
#else
#define debug(x...)
#define debug_arr(x...)
#endif
// clang-format on
//}}}

const int N = 3e5 + 10;
// const int N = 10;
int n, k;
LL a[N];
LL s[N];

LL dp[N];
LL cnt[N];

LL minf[N];
LL minf_p[N];

int check(LL c)
{
    dp[0] = 0, cnt[0] = 0;
    minf[0] = dp[0] - s[0];
    minf_p[0] = 0;

    for (int i = 1; i <= n; i++)
    {
        dp[i] = dp[i - 1];
        cnt[i] = cnt[i - 1];

        if (minf[i - 1] + s[i] - c > dp[i])
        {
            dp[i] = minf[i - 1] + s[i] - c;
            // debug(i, dp[i]);

            cnt[i] = cnt[minf_p[i - 1]] + 1;
        }

        else if (minf[i - 1] + s[i] - c == dp[i])
        {
            if (cnt[i] < cnt[minf_p[i - 1]] + 1)
            {
                dp[i] = minf[i - 1] + s[i] - c;
                cnt[i] = cnt[minf_p[i - 1]] + 1;
            }
        }

        minf[i] = minf[i - 1];
        minf_p[i] = minf_p[i - 1];

        if (dp[i] - s[i] > minf[i])
        {
            minf[i] = dp[i] - s[i];
            minf_p[i] = i;
        }
    }
    // if (cnt[n] == 0) return k + 1;
    return cnt[n];
}

// const int NN = 1e3 + 10;
// LL dp2[NN][NN];

int main()
{
#ifdef LOCAL
    freopen("in", "r", stdin);
    // freopen("out", "w", stdout);
#endif

    ios::sync_with_stdio(false);
    cin.tie(0);

    while (cin >> n >> k)
    {
        for (int i = 1; i <= n; ++i) cin >> a[i];
        s[0] = 0;
        for (int i = 1; i <= n; ++i) s[i] = s[i - 1] + a[i];

        // clr(dp2, 0x80);

        // dp2[0][0] = 0;
        // for (int i = 1; i <= n; i++)
        //{
        // dp2[i][0] = 0;
        // for (int j = 1; j <= i; j++)
        //{
        // dp2[i][j] = dp2[i - 1][j];
        // for (int p = 0; p < i; p++)
        //{
        // dp2[i][j] = max(dp2[i][j], dp2[p][j - 1] + s[i] - s[p]);
        //}
        //}
        //}

        // for (int p = 1; p <= n; ++p)
        //{
        // debug(p, dp2[n][p]);
        //}

        // for (int kk = max(1, k - 15); kk <= min(1000, k + 15); kk++)
        //{
        // debug(kk, dp2[n][kk], dp2[n][kk] - dp2[n][kk - 1]);
        //// cout << kk << "," << dp2[n][kk] << endl;
        //}

        // for (int i = -10; i <= 1; i++)
        //{
        // int v = check(i);
        // debug(i, v, cnt[n], dp[n]);
        //}

        LL lo = -1e15, hi = 1e15;
        bool fd = false;
        while (lo + 1 < hi)
        {
            LL mid = lo + (hi - lo) / 2;

            if (check(mid) >= k)
            {
                lo = mid;
                fd = true;
            }
            else
            {
                hi = mid;
            }
        }

        LL c = lo;
        if (check(hi) >= k) c = hi;
        debug(lo, hi, c);

        // assert(c >= 0);

        int v = check(c);

        debug(c, v);
        LL ans;

        if (c >= 0)
        {
            ans = dp[n] + c * k;
        }
        else
        {
            ans = dp[n] + c * cnt[n];
        }

        debug(cnt[n], k, dp[n], ans);

        // if (c < 0)
        //{
        // LL ans2 = ans;
        // v = check(0);
        //// assert(cnt[n] <= k);
        // assert(dp[n] >= ans);
        // if (cnt[n] <= k && dp[n] >= ans) ans2 = dp[n];
        // debug(cnt[n], dp[n], ans);
        // ans = max(ans, ans2);
        //}

        cout << ans << endl;
    }

    return 0;
}

Compilation message

feast.cpp: In function 'int main()':
feast.cpp:132:14: warning: variable 'fd' set but not used [-Wunused-but-set-variable]
  132 |         bool fd = false;
      |              ^~
feast.cpp:154:13: warning: unused variable 'v' [-Wunused-variable]
  154 |         int v = check(c);
      |             ^
# Verdict Execution time Memory Grader output
1 Incorrect 92 ms 14316 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 82 ms 14316 KB Output is correct
2 Correct 79 ms 14828 KB Output is correct
3 Correct 85 ms 14444 KB Output is correct
4 Incorrect 93 ms 14444 KB Output isn't correct
5 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 112 ms 14572 KB Output is correct
2 Correct 111 ms 14316 KB Output is correct
3 Correct 112 ms 14552 KB Output is correct
4 Correct 111 ms 14316 KB Output is correct
5 Correct 111 ms 14444 KB Output is correct
6 Correct 111 ms 14572 KB Output is correct
7 Correct 111 ms 14572 KB Output is correct
8 Correct 111 ms 14444 KB Output is correct
9 Correct 112 ms 14700 KB Output is correct
10 Correct 112 ms 14572 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 1 ms 364 KB Output is correct
2 Incorrect 1 ms 364 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 364 KB Output is correct
2 Incorrect 1 ms 364 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 364 KB Output is correct
2 Incorrect 1 ms 364 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 92 ms 14316 KB Output isn't correct
2 Halted 0 ms 0 KB -