답안 #169125

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
169125 2019-12-18T13:52:40 Z LinusTorvaldsFan 금 캐기 (IZhO14_divide) C++14
48 / 100
524 ms 262144 KB
#include <iostream>
#include <algorithm>
#include <vector>

using namespace std;

const int maxn = 100000 + 7;

typedef long long ll;

const ll infll = 1e18;

int x[maxn];
int g[maxn];
int d[maxn];
ll pr_d[maxn];
ll pr_g[maxn];

struct Node {
	ll l, r;
	ll val;
	Node* left;
	Node* right;
	Node(ll val_, ll l_, ll r_) {
		val = val_;
		l = l_;
		r = r_;
		left = nullptr;
		right = nullptr;
	}
};

void pull(Node* root) {
	if (root->left != nullptr) {
		root->val = min(root->val, root->left->val);
	}
	if (root->right != nullptr) {
		root->val = min(root->val, root->right->val);
	}
}

void add(Node* root, ll val, ll ind) {
	if (root->l == ind && root->r == ind + 1) {
		root->val = min(val,root->val);
		return;
	}
	ll m = (root->l + root->r) / 2;
	if (ind < m) {
		if (root->left == nullptr) {
			root->left = new Node(val, root->l, m);
		}
		add(root->left, val, ind);
	}
	else {
		if (root->right == nullptr) {
			root->right = new Node(val, m, root->r);
		}
		add(root->right, val, ind);
	}
	pull(root);
}

ll get(Node* root, ll l, ll r) {
	if (root->l >= r || root->r <= l) {
		return infll;
	}
	if (root->l >= l && root->r <= r) {
		//cout << root->l << " " << root->r << " "<<root->val<<endl;
		return root->val;
	}
	ll m = (root->l + root->r) / 2;
	if (root->left == nullptr) {
		root->left = new Node(infll, root->l, m);
	}
	if (root->right == nullptr) {
		root->right = new Node(infll, m, root->r);
	}
	return min(get(root->left, l, r), get(root->right, l, r));
}


int main() {
	ios_base::sync_with_stdio(0); cin.tie(0);
	int n;
	cin >> n;
	for (int i = 0; i < n; i++) {
		cin >> x[i] >> g[i] >> d[i];
	}
	vector<pair<ll, ll>> q;
	for (int i = 0; i < n; i++) {
		pr_d[i] = (i>0?pr_d[i-1]:0) + d[i];
		pr_g[i] = (i > 0 ? pr_g[i - 1] : 0) + g[i];
	}
	Node* root = new Node(infll, -infll, infll);
	ll gold = 0;
	for (int i = 0; i < n; i++) {
		ll  val = (i > 0 ? pr_g[i - 1] : 0);
		ll ind = (i > 0 ? pr_d[i - 1] : 0) - x[i];
		q.emplace_back(((i>0?pr_d[i - 1]:0) - x[i]),(i>0?pr_g[i-1]:0));
		add(root, val, ind);
		ll cur = pr_d[i] - x[i];
		/*for (auto t : q) {
			if (cur >= t.first) {
				gold = max(gold, pr_g[i] - t.second);
			}
		}*/
		gold = max(gold, pr_g[i] - get(root, -infll, cur+1));
	}
	cout << gold;
	return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 376 KB Output is correct
2 Correct 2 ms 376 KB Output is correct
3 Correct 2 ms 376 KB Output is correct
4 Correct 2 ms 376 KB Output is correct
5 Correct 2 ms 504 KB Output is correct
6 Correct 2 ms 632 KB Output is correct
7 Correct 2 ms 632 KB Output is correct
8 Correct 2 ms 632 KB Output is correct
9 Correct 2 ms 504 KB Output is correct
10 Correct 2 ms 504 KB Output is correct
11 Correct 2 ms 632 KB Output is correct
12 Correct 2 ms 632 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 504 KB Output is correct
2 Correct 2 ms 504 KB Output is correct
3 Correct 5 ms 1668 KB Output is correct
4 Correct 6 ms 2168 KB Output is correct
5 Correct 7 ms 2680 KB Output is correct
6 Correct 10 ms 4856 KB Output is correct
7 Correct 7 ms 2680 KB Output is correct
8 Correct 7 ms 2636 KB Output is correct
9 Correct 7 ms 1736 KB Output is correct
10 Correct 8 ms 2452 KB Output is correct
11 Correct 24 ms 9464 KB Output is correct
12 Correct 26 ms 10744 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 16 ms 5112 KB Output is correct
2 Correct 31 ms 10740 KB Output is correct
3 Correct 52 ms 25332 KB Output is correct
4 Correct 256 ms 122488 KB Output is correct
5 Correct 258 ms 123372 KB Output is correct
6 Runtime error 524 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
7 Halted 0 ms 0 KB -