Submission #824969

# Submission time Handle Problem Language Result Execution time Memory
824969 2023-08-14T12:42:02 Z nasam Feast (NOI19_feast) C++17
26 / 100
66 ms 7184 KB
#include <bits/stdc++.h>
#define ll long long
#define FOR(i,a,b) for (int i = (a), _b = (b); i <= _b; i++)
#define FOD(i,b,a) for (int i = (b), _a = (a); i >= _a; i--)
#define FORE(i, v) for (__typeof((v).begin()) i = (v).begin(); i != (v).end(); i++)
#define ALL(v) (v).begin(), (v).end()
#define BIT(x, i) (((x) >> (i)) & 1)
#define MASK(i) (1LL << (i))
#define CNTBIT(x) __builtin_popcount(x)
#define fi first
#define se second
#define pb push_back
#define eb emplace_back
#define left ___left
#define right ___right
#define pii pair<int, int>
#define pll pair<ll, ll>
#define DEBUG(n, a) FOR (i, 1, n) cout << a[i] << ' '; cout << endl;
#define lob lower_bound // >=
#define upb upper_bound // >
#define endl "\n"
#define NAME "main"

using namespace std;

template<class X, class Y> bool maximize(X &x, Y y){ if (x < y){ x = y; return true; } return false; }
template<class X, class Y> bool minimize(X &x, Y y){ if (x > y){ x = y; return true; } return false; }

#define  gogobruhbruh  ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr);
#define  file(name)  if (fopen (name".inp", "r")) { freopen (name".inp", "r", stdin); freopen (name".out", "w", stdout); }

const int MOD = 1e9 + 7;

void add(int &a, int b){ if ((a += b) >= MOD) a -= MOD; }
int sub(int a, int b){ if ((a -= b) < 0) a += MOD; return a; }
int muti(int a, int b){ return (1LL * a * b) % MOD; }
int Pow(int x, int y){ int res = 1; for (; y; y >>= 1){ if (y & 1) res = muti(res, x); x = muti(x, x); } return res; }

const int MAX = 3e5 + 7;
const ll INF = 1e18 + 5;

int num, lim;
ll pre[MAX], dp[MAX], left, right;
int trace[MAX];
bool ok[MAX];

int Trace(){
    int res = 0;
    for (int i = num; i; i = trace[i]){
        while (!ok[i])
            i--;
        res += i > 0;
    }
    return res;
}

pair<ll, int> calc(ll cost){
    ok[0] = 1;
    ll Max = 0, res = 0;
    int idx = 0;
//    dp[i] = max(dp[j] + pre[i] - pre[j]);
    FOR (i, 1, num){
        ok[i] = maximize(res, Max + pre[i] + cost);
        trace[i] = idx;
        if (maximize(Max, res - pre[i]))
            idx = i;
    }
    return {res, Trace()};
}

void solve(){
    left = -right;
    ll res = 0;
//    DEBUG(num, pre);
//    cout << calc(left).se << endl;
    while (left <= right){
        ll mid = (left + right) >> 1;
        auto[cost, k] = calc(mid);
        if (k >= lim){
            res = cost - k * mid;
            right = mid - 1;
        }else
            left = mid + 1;
    }
    cout << res;
}

void read(){
    cin >> num >> lim;
    ll Min = 0;
    FOR (i, 1, num)
        cin >> pre[i],
        pre[i] += pre[i - 1],
        maximize(right, pre[i] - Min),
        minimize(Min, pre[i]);
}

int main(){
    gogobruhbruh;
    file("main");
    int test = 1;
//    cin >> test;
    while (test--)
        read(),
        solve();
}

Compilation message

feast.cpp: In function 'int main()':
feast.cpp:30:61: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   30 | #define  file(name)  if (fopen (name".inp", "r")) { freopen (name".inp", "r", stdin); freopen (name".out", "w", stdout); }
      |                                                     ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
feast.cpp:100:5: note: in expansion of macro 'file'
  100 |     file("main");
      |     ^~~~
feast.cpp:30:95: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   30 | #define  file(name)  if (fopen (name".inp", "r")) { freopen (name".inp", "r", stdin); freopen (name".out", "w", stdout); }
      |                                                                                       ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
feast.cpp:100:5: note: in expansion of macro 'file'
  100 |     file("main");
      |     ^~~~
# Verdict Execution time Memory Grader output
1 Correct 66 ms 6732 KB Output is correct
2 Incorrect 52 ms 6944 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 26 ms 5056 KB Output is correct
2 Correct 27 ms 5180 KB Output is correct
3 Correct 26 ms 5120 KB Output is correct
4 Correct 40 ms 5108 KB Output is correct
5 Correct 45 ms 6804 KB Output is correct
6 Correct 26 ms 5052 KB Output is correct
7 Correct 41 ms 5188 KB Output is correct
8 Correct 43 ms 6860 KB Output is correct
9 Correct 43 ms 6796 KB Output is correct
10 Correct 41 ms 5192 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 55 ms 7092 KB Output is correct
2 Correct 55 ms 6988 KB Output is correct
3 Correct 55 ms 6984 KB Output is correct
4 Correct 55 ms 7024 KB Output is correct
5 Correct 56 ms 7056 KB Output is correct
6 Correct 56 ms 7116 KB Output is correct
7 Correct 55 ms 7136 KB Output is correct
8 Correct 54 ms 7100 KB Output is correct
9 Correct 56 ms 7184 KB Output is correct
10 Correct 56 ms 7112 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 0 ms 324 KB Output is correct
2 Incorrect 0 ms 340 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 324 KB Output is correct
2 Incorrect 0 ms 340 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 324 KB Output is correct
2 Incorrect 0 ms 340 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 66 ms 6732 KB Output is correct
2 Incorrect 52 ms 6944 KB Output isn't correct
3 Halted 0 ms 0 KB -