소 손님 매일 한 문제 3.25 tokitsukaze and Soldier 가중치 선분 수
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define int long long
#define double long double
using namespace std;
#define PI 3.1415926535898
#define eqs 1e-17
const long long max_ = 2e5 + 7;
const int mod = 1e9 + 7;
const int inf = 1e9 + 7;
const long long INF = 1e18;
int read() {
int s = 0, f = 1;
char ch = getchar();
while (ch<'0' || ch>'9') {
if (ch == '-')
f = -1;
ch = getchar();
}
while (ch >= '0'&&ch <= '9') {
s = s * 10 + ch - '0';
ch = getchar();
}
return s * f;
}
inline void write(int x) {
if (x < 0) {
putchar('-');
x = -x;
}
if (x > 9)
write(x / 10);
putchar(x % 10 + '0');
}
inline int min(int a, int b) {
return a < b ? a : b;
}
inline int max(int a, int b) {
return a > b ? a : b;
}
struct kk{
int num, val;
}tree_[4 * max_],node[max_];
int yuan[max_],ynn,n;
bool cmp(const kk & t1, const kk & t2) {
if (t1.num == t2.num)return t1.val > t2.val;
return t1.num > t2.num;
}
void update(int node, int L, int R, int aim,int no) {
if (L == R) {
if (no) {
tree_[node].num++;
tree_[node].val += yuan[L];
}
else {
tree_[node].num--;
tree_[node].val -= yuan[L];
}
return;
}
int mid = (L + R) >> 1, L_tree = node << 1, R_tree = node << 1 | 1;
if (mid >= aim)update(L_tree, L, mid, aim,no);
else update(R_tree, mid + 1, R, aim,no);
tree_[node].num = tree_[L_tree].num + tree_[R_tree].num;
tree_[node].val = tree_[L_tree].val + tree_[R_tree].val;
}
int ask(int node, int L, int R, int aim_num) {
if (aim_num <= 0)return 0;
if (tree_[node].num == aim_num)return tree_[node].val;
if (L == R && tree_[node].num >= aim_num) {
return yuan[L] * aim_num;
}
int mid = (L + R) >> 1, L_tree = node << 1, R_tree = node << 1 | 1;
int t1 = 0, t2 = 0;
if (tree_[R_tree].num >= aim_num)
t2 = ask(R_tree, mid + 1, R, aim_num);
else {
t1 = ask(L_tree, L, mid , aim_num - tree_[R_tree].num);
t2 = tree_[R_tree].val;
}
return t1 + t2;
}
vector<int> ind[max_];
int bianhao[max_];
signed main() {
n = read();
for (int i = 1; i <= n; i++) {
node[i].val = read();
node[i].num = read();
yuan[++ynn] = node[i].val;
ind[node[i].num].push_back(i);
}
sort(yuan + 1, yuan + 1 + ynn);
ynn = unique(yuan + 1, yuan + 1 + ynn) - yuan - 1;
for (int i = 1; i <= n; i++) {
int wei = lower_bound(yuan + 1, yuan + 1 + ynn, node[i].val) - yuan;
bianhao[i] = wei;
update(1, 1, ynn, wei,1);
}
int ans = ask(1, 1, ynn, 1);
for (int i = 2; i <= n; i++) {
for (auto to : ind[i - 1]) {
update(1, 1, ynn, bianhao[to], 0);
}
if (tree_[1].num < i)break;
int v = ask(1, 1, ynn, i);
ans = max(v, ans);
}
cout << ans;
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
예제 1.15 UVALive-3902 트리의 검색컨베이어 도어 제목 대의: n대의 기계는 하나의 트리 네트워크로 연결되어 잎 노드는 클라이언트이고 다른 노드는 서버이다. 처음에는 한 대의 서버만 하나의 서비스를 제공했지만 k의 거리 내의 클라이언트만 덮어쓸 수 있...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.