Codeforces Round #336 (Div. 1)A. Chain Reaction(DP)

26 篇文章 0 订阅

A. Chain Reaction

time limit per test:2 seconds

memory limit per test:256 megabytes

input:standard input

output:standard output

There are n beacons located at distinct positions on a number line. The i-th beacon has position ai and power level bi. When the i-th beacon is activated, it destroys all beacons to its left (direction of decreasing coordinates) within distance bi inclusive. The beacon itself is not destroyed however. Saitama will activate the beacons one at a time from right to left. If a beacon is destroyed, it cannot be activated.

Saitama wants Genos to add a beacon strictly to the right of all the existing beacons, with any position and any power level, such that the least possible number of beacons are destroyed. Note that Genos’s placement of the beacon means it will be the first beacon activated. Help Genos by finding the minimum number of beacons that could be destroyed.

Input

The first line of input contains a single integer n (1 ≤ n ≤ 100 000) — the initial number of beacons.

The i-th of next n lines contains two integers ai and bi (0 ≤ ai ≤ 1 000 000, 1 ≤ bi ≤ 1 000 000) — the position and power level of the i-th beacon respectively. No two beacons will have the same position, so ai ≠ aj if i ≠ j.

Output

Print a single integer — the minimum number of beacons that could be destroyed if exactly one beacon is added.

Examples

Input
4
1 9
3 1
6 1
7 4

Output
1

Input
7
1 1
2 1
3 1
4 1
5 1
6 1
7 1

Output
3

Note

For the first sample case, the minimum number of beacons destroyed is 1. One way to achieve this is to place a beacon at position 9 with power level 2.

For the second sample case, the minimum number of beacons destroyed is 3. One way to achieve this is to place a beacon at position 1337 with power level 42.
题意:给你n个灯塔的坐标x和攻击半径r。每个灯塔会攻击在它左边且距离小于攻击半径的灯塔。现在假设在所有灯塔的最右边有一个位置,攻击半径任意的灯塔,问最小灯塔被毁灭数。
题解:正着DP不好想,我们反着来,dp[i]表示0-i内存活灯塔的数量。状态转移为.
1:当前位置没有灯塔时:dp[i]=dp[i-1];
2:当前位置有灯塔并且是第一个时:dp[i]=1;
3:当前位置有灯塔并且能攻击到左边第一个时dp[i]=1;
4:当前位置有灯塔并且不能攻击到左边第一个时dp[i]=dp[i-r-1];
代码:

#include<stdio.h>
#include<string.h>
#include<iostream>
using namespace std;
int a[1000040];
int dp[1000040];
int main()
{
    int n;
    while(~scanf("%d",&n))
    {
        for(int i=0;i<n;i++)
        {
            int pos,r;
            scanf("%d%d",&pos,&r);
            a[pos]=r;
        }
        int f=0,posf;
        for(int i=0;i<=1e6;i++)
        {
            if(a[i]==0)
                dp[i]=dp[i-1];
            else
            {
                if(f==0)
                    dp[i]=1,f++,posf=i;
                else if(i-posf<=a[i])
                    dp[i]=1;
                else
                    dp[i]=dp[i-a[i]-1]+1;
            }
        }
        int ans=0;
        for(int i=0;i<=1e6;i++)
            ans=max(ans,dp[i]);
        cout<<n-ans<<endl;
    }
}
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值