Submission #3664571


Source Code Expand

#include<bits/stdc++.h>

using namespace std;

#define rep(i, n) for(int i = 0; i < (int)n; i++)
#define yes(f) cout<<((f)?"Yes\n":"No\n")

template< typename A >
void pr(A a) { cout << a << endl; }

template< typename A, typename B >
void pr(A a, B b) { cout << a << " " << b << endl; }

template< typename A >
void PR(A a) {
  rep(i, a.size()) {
    if(i) cout << ' ';
    cout << a[i];
  }
  cout << endl;
}

using int64 = long long;
const int64 LINF = 1LL << 60;
const int INF = (1 << 30) - 1;
const int mod = (int) (1e9 + 7);
using pi = pair< int, int >;

// -------------------------------- //


int N, A[1000];
int64 dp[2][1001];

inline int64 check2(int64 v, int idx, int f) {
  if(idx == N) return 0;
  if(~dp[idx][f]) return dp[idx][f];

  int64 ret = f ? -LINF : LINF;

  int64 sum = 0LL;
  for(int i = idx; i < N; i++) {
    sum += A[i];
    if((f && sum >= v) || (!f && sum < v)) {
      if(f) ret = max(ret, check2(v, i + 1, f ^ 1) + 1);
      else ret = min(ret, check2(v, i + 1, f ^ 1) - 1);
    } else {
      if(f) ret = max(ret, check2(v, i + 1, f ^ 1) - 1);
      else ret = min(ret, check2(v, i + 1, f ^ 1) + 1);
    }
  }
  return dp[idx][f] = ret;
}

int main() {

  cin >> N;
  for(int i = 0; i < N; i++) cin >> A[i];

  auto check = [&](int64 v) {
    for(int i = 0; i <= 1000; i++) dp[0][i] = -INF;
    for(int i = 0; i <= 1000; i++) dp[1][i] = INF;
    dp[1][N] = 0;
    dp[0][N] = 0;
    for(int i = N - 1; i >= 0; i--) {
      int64 sum = 0;
      for(int j = i + 1; j <= N; j++) {
        sum += A[j - 1];
        dp[0][i] = max(dp[0][i], dp[1][j] + (sum >= v ? 1 : -1));
        dp[1][i] = min(dp[1][i], dp[0][j] + (sum >= v ? 1 : -1));
      }
    }
    return dp[0][0] >= 0;
  };

  int64 ok = -(1LL << 40), ng = 1LL << 40;
  while(ng - ok > 1) {
    int64 mid = (ok + ng) / 2;
    if(check(mid)) ok = mid;
    else ng = mid;
  }
  cout << ok << endl;
}

Submission Info

Submission Time
Task H - Median Game
User ei13333
Language C++14 (GCC 5.4.1)
Score 500
Code Size 1972 Byte
Status AC
Exec Time 58 ms
Memory 256 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 500 / 500
Status
AC × 2
AC × 32
Set Name Test Cases
Sample s1.txt, s2.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, 21.txt, 22.txt, 23.txt, 24.txt, 25.txt, 26.txt, 27.txt, 28.txt, 29.txt, 30.txt, s1.txt, s2.txt
Case Name Status Exec Time Memory
01.txt AC 1 ms 256 KB
02.txt AC 1 ms 256 KB
03.txt AC 2 ms 256 KB
04.txt AC 2 ms 256 KB
05.txt AC 1 ms 256 KB
06.txt AC 2 ms 256 KB
07.txt AC 1 ms 256 KB
08.txt AC 1 ms 256 KB
09.txt AC 1 ms 256 KB
10.txt AC 1 ms 256 KB
11.txt AC 55 ms 256 KB
12.txt AC 52 ms 256 KB
13.txt AC 47 ms 256 KB
14.txt AC 52 ms 256 KB
15.txt AC 50 ms 256 KB
16.txt AC 54 ms 256 KB
17.txt AC 56 ms 256 KB
18.txt AC 51 ms 256 KB
19.txt AC 54 ms 256 KB
20.txt AC 55 ms 256 KB
21.txt AC 52 ms 256 KB
22.txt AC 54 ms 256 KB
23.txt AC 55 ms 256 KB
24.txt AC 52 ms 256 KB
25.txt AC 56 ms 256 KB
26.txt AC 55 ms 256 KB
27.txt AC 55 ms 256 KB
28.txt AC 58 ms 256 KB
29.txt AC 53 ms 256 KB
30.txt AC 56 ms 256 KB
s1.txt AC 2 ms 256 KB
s2.txt AC 2 ms 256 KB