-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCF_750C.cpp
68 lines (56 loc) · 1.11 KB
/
CF_750C.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include<bits/stdc++.h>
using namespace std;
#define fr(a,n) for(int i=a;i<n;i++)
#define in(x) cin>>x;
#define ot(x) cout<<x<<endl;
#define pb(x) push_back(x);
#define ll long long;
#define swap(a,b) {a=a^b;b=a^b;a=a^b;}
#define sort(v) sort(v.begin(),v.end())
#define mx INT_MAX;
vector<int> v;
vector<pair<int,int> > m;
int main()
{
int n,x;
in(n);
int a,b;
in(a);
in(b);
m.pb(make_pair(a,b));
n--;
if(b==1){x=mx;}
else x=1899;
int y=a;
fr(0,n)
{
in(a);
in(b);
// m.insert(pair<int,int>(a,b));
m.pb(make_pair(a,b));
if(b==2)
{
x=min(x,1899-y);
}
y+=a;
}
int flag=1;
if(x!=INT_MAX)
{
vector<pair<int,int> >::iterator it;
for(it=m.begin();it!=m.end();it++)
{
a=it->first;
b=it->second;
if((b==1 && x<1900) || (b==2 && x>=1900)){
flag=0;;
break;
}
x+=a;
}
if(flag)cout<<x;
else cout<<"Impossible";
}
else
cout<<"Infinity";
}