답안 #879674

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
879674 2023-11-27T22:13:49 Z OAleksa Sails (IOI07_sails) C++14
0 / 100
1000 ms 8796 KB
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define f first
#define s second
const int maxn = 1e6 + 69;
int n, a[maxn], b[maxn];
pair<int, int> st[4 * maxn];
void combine(int v) {
	auto l1 = st[v * 2];
	auto r1 = st[v * 2 + 1];
	if (l1.f <= r1.f)
		st[v] = st[v * 2];
	else
		st[v] = st[v * 2 + 1];
}
void build(int v, int l, int r) {
	if (l == r) {
		st[v] = {0, l};
	}
	else {
		int mid = (l + r) / 2;
		build(v * 2, l, mid);
		build(v * 2 + 1, mid + 1, r);
		combine(v);
	}
}
void upd(int v, int tl, int tr, int p) {
	if (tl == tr) {
		st[v].f++;
	}
	else {
		int mid = (tl + tr) / 2;
		if (p <= mid)
			upd(v * 2, tl, mid, p);
		else
			upd(v * 2 + 1, mid + 1, tr, p);
		combine(v);
	}
}
pair<int, int> qry(int v, int tl, int tr, int l, int r) {
	if (tl > r || tr < l)
		return {1e9, -1};
	else if (tl >= l && tr <= r)
		return st[v];
	else {
		int mid = (tl + tr) / 2;
		auto l1 = qry(v * 2, tl, mid, l, r);
		auto r1 = qry(v * 2 + 1, mid + 1, tr, l, r);
		if (l1.f <= r1.f)
			return l1;
		else
			return r1;
	}
}
signed main() {
	ios_base::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
   int tt = 1;
  	//cin >> tt;
   while (tt--) {
   	cin >> n;
   	int hmax = 0;
   	for (int i = 1;i <= n;i++) {
   		cin >> a[i] >> b[i];
   		hmax = max(hmax, a[i]);
   	}
   	const int m = hmax;
   	build(1, 1, m);
   	int ans = 0;
   	for (int i = 1;i <= n;i++) {
   		while (b[i] > 0) {
   			auto r = qry(1, 1, m, m - a[i] + 1, m);
   			ans += r.f;
   			upd(1, 1, m, r.s);
   			b[i]--;
   		}
   	}
   	cout << ans;
	}
	return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 4440 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 4696 KB Output is correct
2 Incorrect 1 ms 4444 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 4444 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 4440 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 511 ms 4676 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1040 ms 6744 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1046 ms 6748 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1016 ms 6744 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1035 ms 8792 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1022 ms 8796 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1069 ms 8796 KB Time limit exceeded
2 Halted 0 ms 0 KB -