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
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
#include <iostream>
#include <vector>

using namespace std;

struct Walka{
    int id;
    int lostHp;
    int potion;
    int HpAfterBattle;
};

void mergee( int pocz, int sr, int kon, Walka *tab, Walka *tPom, bool ujemne );
void mergesort( int pocz, int kon, Walka *tab, Walka *tPom, bool ujemne );

int main(){
    ios_base::sync_with_stdio(0);

    int n, z;
    int liczDodatnie = 0;
    int liczUjemne = 0;
    cin>>n>>z;

    int *wynik = new int [n];
    Walka *ujemne = new Walka [n];
    Walka *dodatnie = new Walka [n];

    for( int i = 0; i < n; ++i ){
        int d, a;
        cin>>d>>a;
        Walka dane;
        dane.id = i + 1;
        dane.lostHp = d;
        dane.potion = a;
        dane.HpAfterBattle = a - d;
        if( dane.HpAfterBattle >= 0 ){
            dodatnie[liczDodatnie++] = dane;
        }
        else{
            ujemne[liczUjemne++] = dane;
        }
    }

    Walka *pomDodatnie = new Walka [liczDodatnie];
    mergesort( 0, liczDodatnie - 1, dodatnie, pomDodatnie, false );

    Walka *pomUjemne = new Walka [liczUjemne];
    mergesort( 0, liczUjemne - 1, ujemne, pomUjemne, true );

    bool good = true;
    int i;

    for( i = 0; i < liczDodatnie; ++i ){

        if( z > dodatnie[i].lostHp ){
            wynik[i] = dodatnie[i].id;
            z += dodatnie[i].HpAfterBattle;
        }
        else{
            good = false;
            break;
        }
    }

    if( good ){
        int licznik = liczUjemne - 1;
        for( i = i; i < n; ++i ){
            if( z > ujemne[licznik].lostHp ){
                wynik[i] = ujemne[licznik].id;
                z += ujemne[licznik].HpAfterBattle;
            }
            else{
                good = false;
                break;
            }
            --licznik;
        }
        if( good ){
            cout<<"TAK\n";
            for( int x = 0; x < n; ++x ){
                cout<<wynik[x]<<" ";
            }
        }
        else{
            cout<<"NIE";
        }
    }
    else{
        cout<<"NIE";
    }
    cout<<endl;
}

void mergee( int pocz, int sr, int kon, Walka *tab, Walka *tPom, bool ujemne ){
    int i,j,q;
    for( i = pocz; i <= kon; ++i ){
        tPom[i] = tab[i];
    }
    i = pocz;
    j = sr + 1;
    q = pocz;
    while( i <= sr && j <= kon ){
        if( ujemne ){
            if( tPom[i].potion < tPom[j].potion ){
                tab[q++] = tPom[i++];
            }
            else{
                tab[q++] = tPom[j++];
            }
        }
        else{
            if( tPom[i].lostHp < tPom[j].lostHp ){
                tab[q++] = tPom[i++];
            }
            else{
                tab[q++] = tPom[j++];
            }
        }
    }
    while( i <= sr ){
        tab[q++] = tPom[i++];
    }
}

void mergesort( int pocz, int kon, Walka *tab, Walka *tPom, bool ujemne ){
    int sr;
    if( pocz < kon ){
        sr = ( pocz + kon ) / 2;
        mergesort( pocz, sr, tab, tPom, ujemne );
        mergesort( sr + 1, kon, tab, tPom, ujemne );
        mergee( pocz, sr, kon, tab, tPom, ujemne );
    }
}