现在的位置: 首页 > 综合 > 正文

URAL 2014 Zhenya moves from parents 线段树

2017年11月23日 ⁄ 综合 ⁄ 共 3105字 ⁄ 字号 评论关闭

线段树,前缀和最小

Time Limit: 1000MS   Memory Limit: 65536KB   64bit IO Format: %I64d & %I64u

 Status

Description

Zhenya moved from his parents’ home to study in other city. He didn’t take any cash with him, he only took his father’s credit card with zero balance on it. Zhenya succeeds in studies at the University and sometimes makes a little
money on the side as a Maths tutor. As he makes his own money he spends only it, and when it is over he uses the credit card. Every time he gets or spends money, he sends a letter to his father, where he puts the following two things.
  1. The date when it took place
  2. The sum of earned or spent money
Every time receiving a letter from Zhenya, his father calculates the debt on the credit card at the moment. But here a problem arises. The point is that Russian Post delivers letters in an order different to the one they were
sent in.
For example, in the first Zhenya’s letter the father read that on September 10 Zhenya spent one thousand rubles. He thought that his son had used the credit card, and now the debt is one thousand rubles. However the next day
came a letter with the information that on September 9 Zhenya earned five hundred rubles. It means that half of the money he spent on September 10 was his own, and the debt on the credit card is just five hundred rubles.
Help Zhenya’s father with his account management.

Input

The first line contains an integer n which is the number of Zhenya’s letters (1 ≤ n ≤ 100 000). These letters are listed in the next n lines. Description of each letter consists of the amount of money
Zhenya spent or earned (in the form -c or +c accordingly, where c is an integer, 1 ≤ c ≤ 50 000) followed by both date and time when it took place (in the form of dd.MM hh:mm). All dates belong to the same year, which is not leap (i. e. there are
365 days in it). Any two letters contain either different dates or different time. The letters are listed in the order the father received them.

Output

After each received letter output what Zhenya’s father thinks the amount of the debt on the credit card is.

Sample Input

input output
5
-1000 10.09 21:00
+500 09.09 14:00
+1000 02.09 00:00
-1000 17.09 21:00
+500 18.09 13:00
-1000
-500
0
-500
-500

Source

Problem Author: Nick Burlakov (prepared by Olga Soboleva) 
Problem Source: NEERC 2014, Eastern subregional contest 

 Status

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>

using namespace std;

typedef long long int LL;

const int maxn=110000;

int n;
LL money[maxn];
LL Time[maxn],T[maxn];

LL add[maxn<<2],mx[maxn<<2];

#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1

void build(int l,int r,int rt)
{
  add[rt]=0,mx[rt]=0;
  if(l==r) return ;
  int m=(l+r)/2;
  build(lson); build(rson);
}

void upd_add(int rt)
{
  if(add[rt])
    {
      mx[rt<<1]+=add[rt];
      mx[rt<<1|1]+=add[rt];
      add[rt<<1]+=add[rt];
      add[rt<<1|1]+=add[rt];
      add[rt]=0;
    }
}

void push_down(int rt)
{
  upd_add(rt);
}

void push_up(int rt)
{
  mx[rt]=min(mx[rt<<1],mx[rt<<1|1]);
}

void update(int L,int R,int V,int l,int r,int rt)
{
  if(L<=l&&r<=R)
    {
      add[rt]+=V;
      mx[rt]+=V;
      return ;
    }
  push_down(rt);
  int m=(l+r)/2;
  if(L<=m) update(L,R,V,lson);
  if(R>m) update(L,R,V,rson);
  push_up(rt);
}

int main()
{
  scanf("%d",&n);
  getchar();
  for(int i=0;i<n;i++)
    {
      char op;
      LL mo;
      int day,mouth,hh,mm;
      scanf("%c%I64d %d.%d %d:%d",&op,&mo,&day,&mouth,&hh,&mm);
      money[i]=mo;
      if(op=='-') money[i]*=-1;
      Time[i]=1LL*(mouth*31+day)*24*60+hh*60+mm;
      T[i]=Time[i];
    }
  sort(T,T+n);
  int m=unique(T,T+n)-T;
  build(1,n,1);
  for(int i=0;i<n;i++)
    {
      int id=lower_bound(T,T+m,Time[i])-T+1;
      update(id,n,money[i],1,n,1);
      printf("%I64d\n",mx[1]>=0?0:mx[1]);
    }
  return 0;
}

抱歉!评论已关闭.