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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
/*{{{ Includer.IncludeFiles(ctx, {[[C:\Projekty\r e p o\pali\src\main\pali.hpp]]}) ===*/
/*
  {   -- filePaths
    [[C:\Projekty\r e p o\pali\src\main\pali.hpp]],
  },
*/
#ifndef PALI_HPP
#define PALI_HPP

///
///
///
// Based on no_sillywarnings_please, Copyright (c) Alf P. Steinbach, 2010.
// See https://alfps.wordpress.com/the-no_sillywarnings_please-h-file/ .
// Extra warnings added for /Wall.

#ifdef _MSC_VER

// The following are real warnings but are generated by almost all MS headers, including
// standard library headers, so it's impractical to leave them on.
#pragma  warning( disable: 4619 )   // there is no warning number 'XXXX'
#pragma  warning( disable: 4668 )   // XXX is not defined as a preprocessor macro

// The following are pure sillywarnings:
#pragma warning( disable: 4061 )    // enum value is not *explicitly* handled in switch
#pragma warning( disable: 4099 )    // first seen using 'struct' now seen using 'class'
#pragma warning( disable: 4127 )    // conditional expression is constant
#pragma warning( disable: 4217 )    // member template isn't copy constructor
#pragma warning( disable: 4250 )    // inherits (implements) some member via dominance
#pragma warning( disable: 4251 )    // needs to have dll-interface to be used by clients
#pragma warning( disable: 4275 )    // exported class derived from non-exported class
#pragma warning( disable: 4347 )    // "behavior change", function called instead of template
#pragma warning( disable: 4355 )    // "'this': used in member initializer list
#pragma warning( disable: 4428 )    // MSVC 9: universal-character-name encountered in source
#pragma warning( disable: 4505 )    // unreferenced function has been removed
#pragma warning( disable: 4510 )    // default constructor could not be generated
#pragma warning( disable: 4511 )    // copy constructor could not be generated
#pragma warning( disable: 4512 )    // assignment operator could not be generated
#pragma warning( disable: 4513 )    // destructor could not be generated
#pragma warning( disable: 4610 )    // can never be instantiated user defined constructor required
#pragma warning( disable: 4623 )    // default constructor could not be generated
#pragma warning( disable: 4624 )    // destructor could not be generated
#pragma warning( disable: 4625 )    // copy constructor could not be generated
#pragma warning( disable: 4626 )    // assignment operator could not be generated
#pragma warning( disable: 4640 )    // a local static object is not thread-safe
#pragma warning( disable: 4661 )    // a member of the template class is not defined.
#pragma warning( disable: 4670 )    // a base class of an exception class is inaccessible for catch
#pragma warning( disable: 4672 )    // a base class of an exception class is ambiguous for catch
#pragma warning( disable: 4673 )    // a base class of an exception class is inaccessible for catch
#pragma warning( disable: 4675 )    // resolved overload was found by argument-dependent lookup
#pragma warning( disable: 4702 )    // unreachable code, e.g. in <list> header.
#pragma warning( disable: 4710 )    // call was not inlined
#pragma warning( disable: 4711 )    // call was inlined
#pragma warning( disable: 4820 )    // some padding was added
#pragma warning( disable: 4917 )    // a GUID can only be associated with a class, interface or namespace
#pragma warning( disable: 4996 )    // MSVC 9: a C std library function has been "deprecated" (says MS)

// Extra for /Wall:
#pragma warning( disable: 4350 )    // behavior change: 'member1' called instead of 'member2'
#pragma warning( disable: 4514 )    // 'function' : unreferenced inline function has been removed
#pragma warning( disable: 4718 )    // 'function call' : recursive call has no side effects, deleting

#endif   // _MSC_VER



///
///
///
#include <cstddef>
#include <cassert>
#include <algorithm>
#include <vector>
#include <set>
#include <memory>
#include <limits>
#include <iostream>



///
///
///
void noop(...) { }



///
///
///
template<typename T>
void debug_echo(T x, const char* name, const char* delim, int line)
{
    std::cout
        << "DEBUG_ECHO   " << name << ": "
        << delim << x << delim
        << "   (line " << line << ")"
        << '\n';
}

///
///
///
#define DEBUG_ECHO(x) do { debug_echo(x, #x, "", __LINE__); } while (0)

///
///
///
#define DEBUG_ECHO_DELIM(x, delim) do { debug_echo(x, #x, delim, __LINE__); } while (0)



namespace pali {

///
///
///
typedef size_t umsize_t;
typedef ptrdiff_t msize_t;
typedef size_t umindex_t;
typedef ptrdiff_t mindex_t;
typedef ptrdiff_t munidiff_t;

const mindex_t Null_Index = -1;

const int Uninitialized_Positively = 7777777;
const int Uninitialized_Negatively = -Uninitialized_Positively;

}



///
///
///
#ifdef OVERRIDE_NEW_DELETE

namespace pali { namespace new_alloc {
    msize_t _allocated;
    msize_t _times;

    msize_t get_allocated()
    {
        return _allocated;
    }

    msize_t get_times()
    {
        return _times;
    }

    void clear_counters()
    {
        _allocated = 0;
        _times = 0;
    }
}}

void* operator new(size_t size)
{
    pali::new_alloc::_allocated += static_cast<pali::msize_t>(size);
    ++pali::new_alloc::_times;
    return malloc(size);
}

void* operator new[](size_t size)
{
    pali::new_alloc::_allocated += static_cast<pali::msize_t>(size);
    ++pali::new_alloc::_times;
    return malloc(size);
}

void operator delete(void* ptr) noexcept
{
    free(ptr);
}

void operator delete[](void* ptr) noexcept
{
    free(ptr);
}

#endif   // OVERRIDE_NEW_DELETE



namespace pali {

namespace alloc {

///
///
///
class Pool
{
public:
    Pool(msize_t size)
        : _size(size)
        , _pool(new char[static_cast<umsize_t>(_size)])
        , _allocated(0)
        , _times(0)
    { }

    ~Pool()
    {
        delete[] _pool;
    }

    template<typename T>
    void* allocate(msize_t cnt)
    {
        if (cnt != 1) {
            noop();
        }
        auto size = static_cast<msize_t>(cnt * sizeof(T));
        if (_allocated + size > _size) {
            throw std::bad_alloc();
        }
        auto result = _pool + _allocated;
        _allocated += size;
        ++_times;
        return result;
    }

    void deallocate(void* /*ptr*/)
    {
    }

    msize_t get_allocated() const
    {
        return _allocated;
    }

    msize_t get_times() const
    {
        return _times;
    }

private:
    Pool(const Pool&);
    Pool& operator=(const Pool&);

    msize_t const _size;
    char* const _pool;
    msize_t _allocated;
    msize_t _times;
};



///
///
///
template<typename T>
class CustomAllocator
{
public:
    typedef T value_type;
    typedef value_type* pointer;
    typedef const value_type* const_pointer;
    typedef value_type& reference;
    typedef const value_type& const_reference;

    template<typename U>
    struct rebind { typedef CustomAllocator<U> other; };

    CustomAllocator(Pool& pool)
        : _pool(pool)
    { }

    template<typename U>
    CustomAllocator(const CustomAllocator<U>& other)
        : _pool(other._pool)
    { }

    value_type* allocate(size_t cnt)
    {
        //return static_cast<value_type*>(::operator new(cnt * sizeof(value_type)));

        return static_cast<value_type*>(_pool.allocate<value_type>(static_cast<msize_t>(cnt)));
    }

    void deallocate(value_type* ptr, size_t)
    {
        //::operator delete(ptr);

        _pool.deallocate(ptr);
    }

    void construct(value_type* ptr, const value_type& t) const { new(ptr) value_type(t); }
    void destroy(value_type* ptr) const { /* MSVC C4100 workaround */noop(ptr); ptr->~value_type(); }

    Pool& _pool;
};

template<typename T, typename U>
bool operator==(CustomAllocator<T> const&, CustomAllocator<U> const&)
{
    return true;
}

template<typename T, typename U>
bool operator!=(CustomAllocator<T> const& x, CustomAllocator<U> const& y)
{
    return !(x == y);
}

}   // namespace alloc



namespace math {

///
///
///
int inverse(int x, int mod)
{
    int t = 0; int newt = 1;
    int r = mod; int newr = x;
    while (newr != 0) {
        int quotient = r / newr;
        int tmp;

        tmp = t;
        t = newt;
        newt = tmp - quotient * newt;

        tmp = r;
        r = newr;
        newr = tmp - quotient * newr;
    }
    assert(r == 1);
    if (t < 0) {
        t += mod;
    }
    return t;
}

}   // namespace math



namespace hash {

///
///
///
struct RabinKarpHasher
{
    RabinKarpHasher(msize_t size_max)
        : Base_To_Size(nullptr)
        , Inverse_Base_To_Size(nullptr)
    {
        Base_To_Size = new int[static_cast<umsize_t>(size_max + 1)];
        Inverse_Base_To_Size = new int[static_cast<umsize_t>(size_max + 1)];

        long long value = 1;
        Base_To_Size[0] = static_cast<int>(value);
        Inverse_Base_To_Size[0] = pali::math::inverse(static_cast<int>(value), Mod);
        for (mindex_t i=1; i <= size_max; ++i) {
            value *= Base;
            value %= Mod;
            Base_To_Size[i] = static_cast<int>(value);
            Inverse_Base_To_Size[i] = pali::math::inverse(static_cast<int>(value), Mod);
        }
    }

    ~RabinKarpHasher()
    {
        delete[] Base_To_Size;
        delete[] Inverse_Base_To_Size;
    }

    int hash(const std::vector<int>& tab, mindex_t from, msize_t size)
    {
        long long result = 0;
        for (mindex_t i=from; i <= from + size - 1; ++i) {
            result *= Base;
            result %= Mod;
            result += hv(tab[static_cast<umindex_t>(i)]);
            result %= Mod;
        }
        return static_cast<int>(result);
    }

    int hash(const int* tab, mindex_t from, msize_t size)
    {
        long long result = 0;
        for (mindex_t i=from; i <= from + size - 1; ++i) {
            result *= Base;
            result %= Mod;
            result += hv(tab[i]);
            result %= Mod;
        }
        return static_cast<int>(result);
    }

    int hash_next(const std::vector<int>& tab, int prev, mindex_t to)
    {
        long long result = prev;
        result *= Base;
        result %= Mod;
        result += hv(tab[static_cast<umindex_t>(to)]);
        result %= Mod;
        return static_cast<int>(result);
    }

    int hash_next(const int* tab, int prev, mindex_t to)
    {
        long long result = prev;
        result *= Base;
        result %= Mod;
        result += hv(tab[to]);
        result %= Mod;
        return static_cast<int>(result);
    }

    int hash_roll(const std::vector<int>& tab, int prev, mindex_t to, msize_t size)
    {
        long long result = prev;
        result *= Base;
        result %= Mod;
        result += hv(tab[static_cast<umindex_t>(to)]);
        result %= Mod;
        long long val = Base_To_Size[size] * hv(tab[static_cast<umindex_t>(to - size)]);
        val %= Mod;
        result += Mod - val;
        result %= Mod;
        return static_cast<int>(result);
    }

    int hash_roll(const int* tab, int prev, mindex_t to, msize_t size)
    {
        long long result = prev;
        result *= Base;
        result %= Mod;
        result += hv(tab[to]);
        result %= Mod;
        long long val = Base_To_Size[size] * hv(tab[to - size]);
        val %= Mod;
        result += Mod - val;
        result %= Mod;
        return static_cast<int>(result);
    }

    int sub_hash(int a, int b, int pos_diff)
    {
        long long result = a;
        result += Mod;
        result -= b;
        result *= Inverse_Base_To_Size[pos_diff];
        result %= Mod;
        return static_cast<int>(result);
    }

private:
    RabinKarpHasher(const RabinKarpHasher&);
    RabinKarpHasher& operator=(const RabinKarpHasher&);

    static const int Base = 131071;
    static const int Mod = 524287;
    int* Base_To_Size;
    int* Inverse_Base_To_Size;

    int hv(int x)
    {
        return x;
    }
};

}   // namespace hash

}   // namespace pali

#endif   // PALI_HPP

/*}}}*/



using pali::umsize_t;
using pali::msize_t;
using pali::Uninitialized_Negatively;

const int N_max = 100;
const int M_max = 100;
const int PK_max = 1000000;

struct Task
{
    int p, k, c;

    int c_left;
    int actual_k;

    int priority;

    int latest_possible_actual_p() const
    {
        return k - c_left;
    }

    int spare_time() const
    {
        return k - actual_k;
    }

    int freedom() const
    {
        return k - p - c;
    }
};

struct by_actual_k
{
    bool operator()(const Task* x, const Task* y) const
    {
        return
            (x->actual_k != y->actual_k) ? x->actual_k < y->actual_k :
            x < y;
    }
};

struct by_latest_possible_actual_p_minus_priority
{
    bool operator()(const Task* x, const Task* y) const
    {
        int xv = x->latest_possible_actual_p() - x->priority;
        int yv = y->latest_possible_actual_p() - y->priority;
        return
            (xv != yv) ? xv < yv :
            x < y;
    }
};

struct by_spare_time
{
    bool operator()(const Task* x, const Task* y) const
    {
        int xv = x->spare_time();
        int yv = y->spare_time();
        return
            (xv != yv) ? xv > yv :
            x < y;
    }
};

struct Task_pk
{
    Task* t;
    bool is_p;
    bool is_k;

    int pk() const
    {
        return (is_p) ? t->p : t->k;
    }
};

bool by_pk(const Task_pk* x, const Task_pk* y)
{
    int xv = x->pk();
    int yv = y->pk();
    return
        (xv != yv) ? xv < yv :
        (x->is_p != y->is_p) ? x->is_k :
        x < y;
}

int N, M;

Task tasks_buf[N_max];
Task_pk task_pks_buf[N_max * 2];

Task_pk* task_pks[N_max * 2];

Task* choose(const std::set<Task*, by_spare_time>& running_by_spare_time, Task* offending_task)
{
    int max_freedom = offending_task->freedom();
    auto* chosen = offending_task;
    for (auto it = running_by_spare_time.rbegin(); it != running_by_spare_time.rend() && (*it)->spare_time() == 0; ++it) {
        auto& task = **it;
        int freedom = task.freedom();
        if (max_freedom < freedom) {
            max_freedom = freedom;
            chosen = &task;
        }
    }
    return chosen;
}

Task* solve()
{
    for (int i = 0; i < N; ++i) {
        auto& task = tasks_buf[i];
        task.c_left = task.c;
        task.actual_k = Uninitialized_Negatively;
    }

    std::set<Task*, by_actual_k> running_by_actual_k;
    std::set<Task*, by_spare_time> running_by_spare_time;
    std::set<Task*, by_latest_possible_actual_p_minus_priority> waiting;
    std::vector<Task*> some_tasks;
    some_tasks.reserve(static_cast<umsize_t>(N));

    Task_pk const* const* pk = task_pks;
    while (pk < task_pks + N * 2) {
        int time_pk = (*pk)->pk();
        int time_actual_k =
            (!running_by_actual_k.empty())
            ? (*running_by_actual_k.begin())->actual_k
            : time_pk;
        int time_latest_possible_actual_p =
            (!waiting.empty())
            ? (*waiting.begin())->latest_possible_actual_p()
            : time_pk;
        int time = std::min(std::min(time_pk, time_actual_k), time_latest_possible_actual_p);

        while (!running_by_actual_k.empty() && time == (*running_by_actual_k.begin())->actual_k) {
            auto task_it = running_by_actual_k.begin();
            running_by_spare_time.erase(*task_it);
            running_by_actual_k.erase(task_it);
        }

        while (pk < task_pks + N * 2 && (*pk)->is_k && time == (*pk)->pk()) {
            auto task_it = waiting.find((*pk)->t);
            if (task_it != waiting.end()) {
                return *task_it;
            }

            ++pk;
        }
        while (pk < task_pks + N * 2 && (*pk)->is_p && time == (*pk)->pk()) {
            waiting.insert((*pk)->t);

            ++pk;
        }

        some_tasks.clear();
        auto waiting_it = waiting.begin();
        while (!running_by_spare_time.empty() && waiting_it != waiting.end() && (*running_by_spare_time.begin())->spare_time() > (*waiting_it)->latest_possible_actual_p() - time) {
            auto task_it = running_by_spare_time.begin();
            auto& task = **task_it;
            running_by_spare_time.erase(task_it);
            running_by_actual_k.erase(&task);

            some_tasks.push_back(&task);

            ++waiting_it;
        }
        for (auto* task : some_tasks) {
            task->c_left = task->actual_k - time;
            waiting.insert(task);
        }

        while (!waiting.empty() && static_cast<msize_t>(running_by_actual_k.size()) < M) {
            auto task_it = waiting.begin();
            auto& task = **task_it;
            waiting.erase(task_it);

            task.actual_k = time + task.c_left;
            if (task.actual_k > task.k) {
                return &task;
            }
            running_by_actual_k.insert(&task);
            running_by_spare_time.insert(&task);
        }

        if (!waiting.empty() && time == (*waiting.begin())->latest_possible_actual_p()) {
            return choose(running_by_spare_time, *waiting.begin());
        }
    }

    return nullptr;
}

int main()
{
    std::ios_base::sync_with_stdio(false);

    scanf("%d %d", &N, &M);
    for (int i = 0; i < N; ++i) {
        int pi, ki, ci; scanf("%d %d %d", &pi, &ki, &ci);
        auto& task = tasks_buf[i];
        task.p = pi;
        task.k = ki;
        task.c = ci;

        auto& task_p = task_pks_buf[i * 2];
        task_p.t = &task;
        task_p.is_p = true;
        task_p.is_k = false;
        auto& task_k = task_pks_buf[i * 2 + 1];
        task_k.t = &task;
        task_k.is_p = false;
        task_k.is_k = true;

        task_pks[i * 2] = &task_p;
        task_pks[i * 2 + 1] = &task_k;
    }

    std::sort(task_pks, task_pks + N * 2, by_pk);

    for (int i = 0; i < N; ++i) {
        auto& task = tasks_buf[i];
        task.priority = 0;
    }
    bool tak = false;
    for (int i = 0; !tak && i < N * 7; ++i) {
        auto* offending_task = solve();
        tak = (offending_task == nullptr);
        if (!tak) {
            ++offending_task->priority;
        }
    }

    printf("%s\n", (tak) ? "TAK" : "NIE");
}