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
#include <iostream>
#include <set>
#include <algorithm>
using namespace std;
int main()
{
    ios_base::sync_with_stdio(0);
    int n,d,a;
    long long int z;

    cin >> n >> z;

    int tab[n+1][2];
    set< pair <int,int> > dodatnie;
    set< pair <int,int> > ujemne;

    for(int i=1; i<=n; i++)
    {
        cin >> d >> a;
        tab[i][0] = d;
        tab[i][1] = a;

        if(a-d>=0) /// jesli starcie jest na +
            dodatnie.insert(make_pair(d,i));
        else
            ujemne.insert(make_pair(a,i));
    }

    for(set< pair<int,int> >::iterator it=dodatnie.begin(); it!=dodatnie.end(); ++it)
    {
        if(z - (*it).first > 0)
        {
            z = z - (*it).first + tab[(*it).second][1];
        }
        else
        {
            cout << "NIE" << endl;
            return 0;
        }
    }

    for(set< pair<int,int> >::reverse_iterator it=ujemne.rbegin(); it!=ujemne.rend(); ++it)
    {
        if(z - tab[(*it).second][0] > 0)
        {
            z = z -  tab[(*it).second][0] + (*it).first;
        }
        else
        {
            cout << "NIE" << endl;
            return 0;
        }
    }

    cout << "TAK" << endl;

    for(set< pair<int,int> >::iterator it=dodatnie.begin(); it!=dodatnie.end(); ++it)
        cout << (*it).second << " ";

    for(set< pair<int,int> >::reverse_iterator it=ujemne.rbegin(); it!=ujemne.rend(); ++it)
        cout << (*it).second << " ";

return 0;
}