URAL 2014 Zhenya moves from parents 线段树


线段树,前缀和最小


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;
}





  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值