답안 #231361

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
231361 2020-05-13T12:36:44 Z maskoff Bigger segments (IZhO19_segments) C++14
0 / 100
156 ms 262148 KB
#include <bits/stdc++.h>
#include <ext/rope>
#include <random>
#include <chrono>
#include <ext/pb_ds/assoc_container.hpp>
 
#define file ""
 
#define all(x) x.begin(), x.end()
 
#define sc second
#define fr first
 
#define pb push_back
#define mp make_pair

#define pss pair<line*, line*>
 
using namespace std;
using namespace __gnu_cxx;
 
typedef long long ll;
typedef pair <int, int> pii;
typedef pair <ll, ll> pll;
                                    
const ll inf = 1e18;
const int MOD = 1e9 + 7;
                                          
const int dx[] = {+1, -1, 0, 0};
const int dy[] = {0, 0, +1, -1};

int const N = 5e6 + 5;

vector<pll> t(4 * N); 
int L[4 * N], R[4 * N];
int cnt = 1;

void update (ll u, ll l, ll r, ll pos, pll val) {
	if(l > r) return;
 	if (l == r) {
 	 	t[u] = val;
 	 	return;
 	}
 	ll m = (l + r) / 2;
 	if (pos <= m) {
 	 	if (!L[u]) L[u] = ++cnt;
 	 	update (L[u], l, m, pos, val);
 	}
 	else {
 	 	if (!R[u]) R[u] = ++cnt;
 	 	update (R[u], m + 1, r, pos, val);
 	}
 	t[u] = max(t[L[u]], t[R[u]]);
}

pll get (ll u, ll ul, ll ur, ll l, ll r) {
 	if (!u || l > r || ul > ur || l > ur || ul > r)
 		return {0, 0};
 	if (l <= ul && ur <= r)
 		return t[u];
 	ll um = (ul + ur) / 2;
 	return max(get(L[u], ul, um, l, r), get(R[u], um + 1, ur, l, r));
}

int main() {      
	ios_base :: sync_with_stdio(false);
  cin.tie(nullptr);
  int n;
  cin >> n;
  vector<ll> a(n + 1), pref(n + 1);
  for (int i = 1; i <= n; i++)
  	cin >> a[i];
  for (int i = 1; i <= n; i++)
  	pref[i] = pref[i - 1] + a[i];
  vector<ll> dp(n + 1), sum(n + 1);

  for (int i = 1; i <= n; i++) {
  	pii k = get(1, 1, inf, 1, pref[i]);
  	dp[i] = k.fr + 1;
  	sum[i] = pref[i] - pref[k.sc];
  	update (1, 1, inf, sum[i] + pref[i], {dp[i], i});
  }
  cout << dp[n];
	return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 156 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 156 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 156 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 156 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 156 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -