Submission #1025428

# Submission time Handle Problem Language Result Execution time Memory
1025428 2024-07-17T03:10:49 Z joelgun14 Hacker (BOI15_hac) C++17
0 / 100
1 ms 348 KB
// header file
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
// pragma
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
// macros
#define endl "\n"
#define ll long long
#define mp make_pair
#define ins insert
#define lb lower_bound
#define pb push_back
#define ub upper_bound
#define lll __int128
#define fi first
#define se second
using namespace std;
using namespace __gnu_pbds;
typedef tree<int, null_type, less_equal<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_multiset;
typedef tree<int, null_type, less<int>, rb_tree_tag,tree_order_statistics_node_update> ordered_set;
int main() {
  ios_base::sync_with_stdio(0); cin.tie(NULL);
  int n;
  cin >> n;
  ll a[n + 1], pref[2 * n + 1];
  for(int i = 1; i <= n; ++i)
    cin >> a[i];
  pref[0] = 0;
  for(int i = 1; i <= 2 * n; ++i)
    pref[i] = pref[i - 1] + (i > n ? a[i - n] : a[i]);
  multiset<ll> s;
  for(int i = 1; i + n / 2 <= n + 1; ++i) {
    s.insert(pref[i + n / 2] - pref[i]);
  }
  ll res = 0;
  for(int i = 1; i <= n; ++i) {
    // cerr << "DEB " << i << " " << *--s.end() << endl;
    res = max(res, pref[n] - *--s.end());
    s.erase(s.find(pref[i + n / 2] - pref[i]));
    s.insert(pref[n] + pref[i] - pref[i + n - n / 2]);
  }
  cout << res << endl;
  return 0;
}
# Verdict Execution time Memory Grader output
1 Correct 0 ms 344 KB Output is correct
2 Incorrect 0 ms 344 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 344 KB Output is correct
2 Incorrect 0 ms 344 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 344 KB Output is correct
2 Incorrect 0 ms 344 KB Output isn't correct
3 Halted 0 ms 0 KB -