Good Bye 2016 C. New Year and Rating 不等式+贪心、数学

129 篇文章 0 订阅
58 篇文章 0 订阅

C. New Year and Rating
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Every Codeforces user has rating, described with one integer, possibly negative or zero. Users are divided into two divisions. The first division is for users with rating 1900 or higher. Those with rating 1899 or lower belong to the second division. In every contest, according to one's performance, his or her rating changes by some value, possibly negative or zero.

Limak competed in n contests in the year 2016. He remembers that in the i-th contest he competed in the division di (i.e. he belonged to this division just before the start of this contest) and his rating changed by ci just after the contest. Note that negative ci denotes the loss of rating.

What is the maximum possible rating Limak can have right now, after all n contests? If his rating may be arbitrarily big, print "Infinity". If there is no scenario matching the given information, print "Impossible".

Input

The first line of the input contains a single integer n (1 ≤ n ≤ 200 000).

The i-th of next n lines contains two integers ci and di ( - 100 ≤ ci ≤ 1001 ≤ di ≤ 2), describing Limak's rating change after the i-th contest and his division during the i-th contest contest.

Output

If Limak's current rating can be arbitrarily big, print "Infinity" (without quotes). If the situation is impossible, print "Impossible" (without quotes). Otherwise print one integer, denoting the maximum possible value of Limak's current rating, i.e. rating after the ncontests.

Examples
input
3
-7 1
5 2
8 2
output
1907
input
2
57 1
22 2
output
Impossible
input
1
-5 1
output
Infinity
input
4
27 2
13 1
-50 1
8 2
output
1897
Note

In the first sample, the following scenario matches all information Limak remembers and has maximum possible final rating:

  • Limak has rating 1901 and belongs to the division 1 in the first contest. His rating decreases by 7.
  • With rating 1894 Limak is in the division 2. His rating increases by 5.
  • Limak has rating 1899 and is still in the division 2. In the last contest of the year he gets  + 8 and ends the year with rating 1907.

In the second sample, it's impossible that Limak is in the division 1, his rating increases by 57 and after that Limak is in the division 2 in the second contest.




Source

Good Bye 2016


My Solution

题意:rating == 1900是区分各个分组的界限,给出给出n个ci 和 di,表示rating上涨了ci分(ci正为涨分负为掉分) 且当场比赛是在di分区大的,不知道起始的rating,只给出了n场连续的比赛涨分情况和所在分组,求出n场比赛之后可能的rating的最大值。


不等式+贪心、数学

很棒的题,

l = -INF, r = INF,l 表示当前rating可能值的最小值,r表示当前rating可能值的最大值。

如果当前分组是div2则r = min(r, 1899),,

如果当前是div2,上一次是div1,则r = min(r, 1899);, l = max(l, 1900);然后l += v,r += v,

如果当前是div1,上一次是div2,则r = min(r, 1899 + prev);,l = max(l, 1900 + prev);,然后l += v,r += v,

其它情况只做普通刷新,且当l > r 时 ans  = -1;

当前所在的分组表示的是上一次比赛结束后,rating所在的分组,

具体见源码 ^_^

复杂度 O(n)


#include <iostream>
#include <cstdio>

using namespace std;
typedef long long LL;
const int maxn = 2e5 + 8;
const int INF = 1e8;

int main()
{
    #ifdef LOCAL
    freopen("c.txt", "r", stdin);
    //freopen("c.out", "w", stdout);
    int T = 4;
    while(T--){
    #endif // LOCAL
    ios::sync_with_stdio(false); cin.tie(0);

    int n, v, d, l = -INF, r = INF, pred = -1, prev = -1;
    cin >> n;
    int ans = 0;
    for(int i = 0; i < n; i++){
        //cout << l << " " << r << endl;
        cin >> v >> d;
        if(i == 0){
            if(d == 2){
                r = 1899;
                r += v;
            }
            else if(d == 1){
                l = 1900;
                l += v;
            }
            pred = d;
            prev = v;
            continue;
        }

        if(d == 1){
            if(r < 1900){
                ans = -1;
                //break;
            }
            else{
                if(pred == 2){
                    r = min(r, 1899 + prev);
                    r += v;
                    l = max(l, 1900);//
                    l += v;
                    if(l > r){
                        ans = -1;
                    }
                }
                else{
                    if(r != INF) {r += v;}
                    if(l != -INF) {l = max(1900, l); l += v;}
                }
            }
        }
        else if(d == 2){

            if(l >= 1900){

                ans = -1;
                //break;
            }
            else{
                if(pred == 1){

                    r = min(r, 1899);//cout <<r << " pred " << pred << " " << v << " " << d << " ?";
                    r += v;
                    l = max(l, 1900 + prev);
                    l += v;
                    if(l > r){
                        ans = -1;
                    }
                }
                else{
                    if(r != INF) {r = min(r, 1899); r += v; }
                    if(l != -INF) l += v;
                }
            }
        }

        if(l > r){
            ans = -1;
        }

        pred = d;
        prev = v;
    }

    if(ans == -1) cout << "Impossible" << endl;
    else if(r == INF) cout << "Infinity" << endl;
    else cout << r << endl;

    #ifdef LOCAL
    cout << endl;
    }
    #endif // LOCAL
    return 0;
}



  Thank you!

                                                                                                                                               ------from ProLights

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值