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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
#include <iostream>
#include <set>
#include <vector>
#include <algorithm>
#include <iterator>
#define RELEASE

#ifdef RELEASE
#ifdef HOME
#undef HOME
#endif // HOME
#endif // RELEASE

using namespace std;
#define REP(i,n) for(int i=0;i<(n);++i)
int ileZadan, ileProckow;
struct Zadanie {
    int start;
    int deadline;
#ifdef HOME
    int id;
#endif
    int czas;
    bool operator<(const Zadanie& zad) const
    {
        if(start!=zad.start)
            return start<zad.start;
        if(czas-deadline != zad.czas-zad.deadline)
            return czas-deadline < zad.czas-zad.deadline;
        if(deadline != zad.deadline)
            return deadline < zad.deadline;
        return czas < zad.czas;
    }
    int czasStartu;
} zad;

struct cmpPrzedStartem {
    bool operator() (const Zadanie& zad1, const Zadanie& zad2) {
        return zad1.start<zad2.start;
    }
};
struct cmpOczekujace {
    bool operator()(const Zadanie& zad1, const Zadanie& zad2) {
        return zad1.deadline-zad1.czas < zad2.deadline-zad2.czas;
    }
};

multiset<Zadanie, cmpPrzedStartem> zadania;
multiset<Zadanie, cmpOczekujace> w_trakcie;
multiset<Zadanie, cmpOczekujace> oczekujace;
#define FAIL {cout<<"NIE"<<endl;exit(0);}

void timeChanged(int czas) {
#ifdef HOME
    cout << "time changed to " << czas << endl;
#endif
    auto iter = w_trakcie.begin();
    while(iter!=w_trakcie.end())
    {
#ifdef HOME
        cout << "task " << iter->id << " finish at " << iter->czasStartu+iter->czas << ", deadline at " << iter->deadline << endl;
#endif // HOME
        if(iter->czasStartu+iter->czas <= czas)
        {
#ifdef HOME
            cout << "task " << iter->id << " finished" << endl;
#endif
            multiset<Zadanie, cmpOczekujace>::difference_type offset = std::distance(w_trakcie.begin(), iter);
            w_trakcie.erase(iter);
            iter = w_trakcie.begin();
            advance(iter, offset);
            continue;
        }
        ++iter;
    }
    while(w_trakcie.size()<ileProckow && !oczekujace.empty())
    {
        Zadanie zad = *oczekujace.begin();
        oczekujace.erase(oczekujace.begin());
        zad.czasStartu = czas;
#ifdef HOME
            cout << "task " << zad.id << " resumed, will finish at " << zad.czasStartu+zad.czas << endl;
#endif
        if(zad.czasStartu + zad.czas > zad.deadline)
            FAIL;
        w_trakcie.insert(zad);
    }
}

int main()
{
    zad.czasStartu = -1;
    ios_base::sync_with_stdio(0);
    cin>>ileZadan>>ileProckow;
    int index=0;
    REP(x,ileZadan)
    {
        cin >> zad.start >> zad.deadline >> zad.czas;
#ifdef HOME
        zad.id = ++index;
#endif
        zadania.insert(zad);
    }
    int czas=0;
    for(Zadanie zad : zadania)
    {
        czas = zad.czasStartu = zad.start;
        timeChanged(czas);
        w_trakcie.insert(zad);
#ifdef HOME
            cout << "task " << zad.id << " started at " << czas << endl;
            cout << w_trakcie.size() << " currenly running tasks" << endl;
#endif
        if(w_trakcie.size() > ileProckow)
        {
            Zadanie zad = *w_trakcie.rbegin();
            w_trakcie.erase(std::prev(w_trakcie.end()));
#ifdef HOME
            cout << "task " << zad.id << " suspended at " << czas << endl;
#endif
            zad.czas -= (czas-zad.czasStartu);
            oczekujace.insert(zad);
        }
//
//        if(w_trakcie.size() < ileProckow)
//        {
//            czas = zad.czasStartu = zad.start;
//            w_trakcie.insert(zad);
//            timeChanged(czas);
//        }
//        else
//        {
//            czas = zad.czasStartu;
//            oczekujace.insert(zad);
//            timeChanged(czas);
//        }

    }
    while(!w_trakcie.empty())
    {
        int mintime = 2000000000;
        for(const Zadanie& zad : w_trakcie)
            mintime = min(mintime, zad.czasStartu+zad.czas);
        timeChanged(mintime);
    }
    cout << "TAK" << endl;

    return 0;
}