#include <cstdio> #include <iostream> #include <algorithm> #include <cstring> #include <vector> #include <set> #include <map> #include <cmath> #include <list> #include <ctime> #include <sstream> #include <queue> #include <stack> #include <bitset> #include <unordered_set> #include <unordered_map> using namespace std; typedef vector<int> vi; typedef pair<int,int> pii; typedef long long ll; typedef short int sint; #define FOR(x, b, e) for(int x=(b); x<=(e); ++x) #define FORD(x, b, e) for(int x=((int)(b))-1; x>=(e); --x) #define REP(x, n) for(int x=0; x<(n); ++x) #define ALL(c) c.begin(),c.end() #define SIZE(x) ((int)((x).size())) #define PB push_back #define ST first #define ND second #define mp(x,y) make_pair(x,y) #define DEBUG 1 #define debug(x) {if (DEBUG)cerr <<#x <<" = " <<x <<endl; } #define debugv(x) {if (DEBUG) {cerr <<#x <<" = "; FOREACH(it, (x)) cerr <<*it <<", "; cout <<endl; }} #define REMAX(a,b) (a)=max((a),(b)); #define REMIN(a,b) (a)=min((a),(b)); #define wez2(n,m) int (n),(m); scanf("%d %d",&(n),&(m)); const int POT = 1 << 30; bool dbg = false; struct node { int val, pocz, kon; node *p; node *l, *r; node(node *p_, int pocz_, int kon_): p(p_), pocz(pocz_), kon(kon_) { val = 0; l = NULL; r = NULL; } }; node* getLeft(node* n) { if (n->l == NULL) n->l = new node(n, n->pocz, (n->pocz + n->kon) / 2); return n->l; } node* getRight(node* n) { if (n->r == NULL) n->r = new node(n, ((n->pocz + n->kon) / 2) + 1, n->kon); return n->r; } pair<node*, node*> znajdz(int elem, node* zPrz, node* glob) { if (dbg) printf("znajdz: elem - %d, prz: (%d, %d)\n", elem, zPrz->pocz, zPrz->kon); if (zPrz->pocz == zPrz->kon) return mp(zPrz, glob); int sr = (zPrz->pocz + zPrz->kon) / 2; if (elem <= sr) { return znajdz(elem, getLeft(zPrz), getLeft(glob)); } else { return znajdz(elem, getRight(zPrz), getRight(glob)); } } void add(node* vert, int pos) { ++vert->val; if (vert->pocz == vert->kon) return; int sr = (vert->pocz + vert->kon) / 2; if (pos <= sr) { add(getLeft(vert), pos); } else { add(getRight(vert), pos); } } int ile(node* wsk) { if (wsk == NULL) return 0; return wsk->val; } int wez(node* zPrz, node* glob) { if (ile(glob) == ile(zPrz)) { return -1; } if (zPrz->pocz == zPrz->kon) { return zPrz->pocz; } int c = wez(getLeft(zPrz), getLeft(glob)); if (c != -1) return c; return wez(getRight(zPrz), getRight(glob)); } int szukaj(int pos, node* zPrz, node* glob) { pair<node*, node*> starty = znajdz(pos, zPrz, glob); node* curPrz = starty.ST, *curGlob = starty.ND; if (ile(curGlob) > ile(curPrz)) return pos; while (curGlob->p != NULL) { if (curPrz == getLeft(curPrz->p)) { if (dbg) printf("in left node\n"); int tmp = wez(getRight(curPrz->p), getRight(curGlob->p)); if (tmp != -1) return tmp; } curGlob = curGlob->p; curPrz = curPrz->p; } return -1; } const int N = 1010100; int przy[N]; node* global; node* tree[N]; int a[N], b[N], p[N]; map<int, int> odw; int wyd[N]; bool juz[N]; int res[N]; bool porow(int ax, int bx) { int t1 = b[ax], t2 = b[bx]; if (t1 != t2) return t1 < t2; return ax < bx; } int n, k; int main() { stack<pii> S; scanf("%d %d", &n, &k); REP(i, n) { scanf("%d %d %d", &a[i], &b[i], &p[i]); wyd[i] = i; przy[i] = p[i]; } global = new node(NULL, 1, POT); sort(wyd, wyd + n, porow); sort(przy, przy + n); int dd = unique(przy, przy + n) - przy; REP(i, dd) { odw[przy[i]] = i; } REP(i, n) { p[i] = odw[p[i]]; } int wsk = 0; REP(i,n) { // zamkniecie int ind = wyd[i]; //dbg = (p[ind] == 224); if (dbg) printf("%d - robie: %d, [%d;%d] przed: %d\n", i, ind, a[ind], b[ind], p[ind]); if (tree[p[ind]] == NULL) { tree[p[ind]] = new node(NULL, 1, POT); } int c = szukaj(a[ind], tree[p[ind]], global); if (dbg) printf(" szuk: %d\n", c); if (c != -1) { // moge wykorzystac stare res[ind] = c; add(tree[p[ind]], c); if (dbg) printf("\tdaje go w: %d\n", c); } else { int mojKon = -1; if (S.empty() || S.top().ND < b[ind]) { if (dbg) printf("\tna ostatnim\n"); mojKon = b[ind]; if (!S.empty() && S.top().ND + 1 == mojKon) { ++S.top().ND; } else { S.push(mp(mojKon, mojKon)); } } else { // czyli tu juz ktos sie skonczyl, najwczesniejszy dla mnie to: najw.ST - 1; if (dbg) printf("przed ostatnim\n"); pii najw = S.top(); S.pop(); --najw.ST; mojKon = najw.ST; if (!S.empty() && S.top().ND +1 == najw.ST); else S.push(najw); } if (mojKon < a[ind]) { printf("NIE\n"); return 0; } else { res[ind] = mojKon; if (dbg) printf("\tnowy w : %d\n", mojKon); add(tree[p[ind]], mojKon); add(global, mojKon); } } } printf("%d\n", ile(global)); REP(i, n) { printf("%d\n", res[i]); } return 0; }
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 | #include <cstdio> #include <iostream> #include <algorithm> #include <cstring> #include <vector> #include <set> #include <map> #include <cmath> #include <list> #include <ctime> #include <sstream> #include <queue> #include <stack> #include <bitset> #include <unordered_set> #include <unordered_map> using namespace std; typedef vector<int> vi; typedef pair<int,int> pii; typedef long long ll; typedef short int sint; #define FOR(x, b, e) for(int x=(b); x<=(e); ++x) #define FORD(x, b, e) for(int x=((int)(b))-1; x>=(e); --x) #define REP(x, n) for(int x=0; x<(n); ++x) #define ALL(c) c.begin(),c.end() #define SIZE(x) ((int)((x).size())) #define PB push_back #define ST first #define ND second #define mp(x,y) make_pair(x,y) #define DEBUG 1 #define debug(x) {if (DEBUG)cerr <<#x <<" = " <<x <<endl; } #define debugv(x) {if (DEBUG) {cerr <<#x <<" = "; FOREACH(it, (x)) cerr <<*it <<", "; cout <<endl; }} #define REMAX(a,b) (a)=max((a),(b)); #define REMIN(a,b) (a)=min((a),(b)); #define wez2(n,m) int (n),(m); scanf("%d %d",&(n),&(m)); const int POT = 1 << 30; bool dbg = false; struct node { int val, pocz, kon; node *p; node *l, *r; node(node *p_, int pocz_, int kon_): p(p_), pocz(pocz_), kon(kon_) { val = 0; l = NULL; r = NULL; } }; node* getLeft(node* n) { if (n->l == NULL) n->l = new node(n, n->pocz, (n->pocz + n->kon) / 2); return n->l; } node* getRight(node* n) { if (n->r == NULL) n->r = new node(n, ((n->pocz + n->kon) / 2) + 1, n->kon); return n->r; } pair<node*, node*> znajdz(int elem, node* zPrz, node* glob) { if (dbg) printf("znajdz: elem - %d, prz: (%d, %d)\n", elem, zPrz->pocz, zPrz->kon); if (zPrz->pocz == zPrz->kon) return mp(zPrz, glob); int sr = (zPrz->pocz + zPrz->kon) / 2; if (elem <= sr) { return znajdz(elem, getLeft(zPrz), getLeft(glob)); } else { return znajdz(elem, getRight(zPrz), getRight(glob)); } } void add(node* vert, int pos) { ++vert->val; if (vert->pocz == vert->kon) return; int sr = (vert->pocz + vert->kon) / 2; if (pos <= sr) { add(getLeft(vert), pos); } else { add(getRight(vert), pos); } } int ile(node* wsk) { if (wsk == NULL) return 0; return wsk->val; } int wez(node* zPrz, node* glob) { if (ile(glob) == ile(zPrz)) { return -1; } if (zPrz->pocz == zPrz->kon) { return zPrz->pocz; } int c = wez(getLeft(zPrz), getLeft(glob)); if (c != -1) return c; return wez(getRight(zPrz), getRight(glob)); } int szukaj(int pos, node* zPrz, node* glob) { pair<node*, node*> starty = znajdz(pos, zPrz, glob); node* curPrz = starty.ST, *curGlob = starty.ND; if (ile(curGlob) > ile(curPrz)) return pos; while (curGlob->p != NULL) { if (curPrz == getLeft(curPrz->p)) { if (dbg) printf("in left node\n"); int tmp = wez(getRight(curPrz->p), getRight(curGlob->p)); if (tmp != -1) return tmp; } curGlob = curGlob->p; curPrz = curPrz->p; } return -1; } const int N = 1010100; int przy[N]; node* global; node* tree[N]; int a[N], b[N], p[N]; map<int, int> odw; int wyd[N]; bool juz[N]; int res[N]; bool porow(int ax, int bx) { int t1 = b[ax], t2 = b[bx]; if (t1 != t2) return t1 < t2; return ax < bx; } int n, k; int main() { stack<pii> S; scanf("%d %d", &n, &k); REP(i, n) { scanf("%d %d %d", &a[i], &b[i], &p[i]); wyd[i] = i; przy[i] = p[i]; } global = new node(NULL, 1, POT); sort(wyd, wyd + n, porow); sort(przy, przy + n); int dd = unique(przy, przy + n) - przy; REP(i, dd) { odw[przy[i]] = i; } REP(i, n) { p[i] = odw[p[i]]; } int wsk = 0; REP(i,n) { // zamkniecie int ind = wyd[i]; //dbg = (p[ind] == 224); if (dbg) printf("%d - robie: %d, [%d;%d] przed: %d\n", i, ind, a[ind], b[ind], p[ind]); if (tree[p[ind]] == NULL) { tree[p[ind]] = new node(NULL, 1, POT); } int c = szukaj(a[ind], tree[p[ind]], global); if (dbg) printf(" szuk: %d\n", c); if (c != -1) { // moge wykorzystac stare res[ind] = c; add(tree[p[ind]], c); if (dbg) printf("\tdaje go w: %d\n", c); } else { int mojKon = -1; if (S.empty() || S.top().ND < b[ind]) { if (dbg) printf("\tna ostatnim\n"); mojKon = b[ind]; if (!S.empty() && S.top().ND + 1 == mojKon) { ++S.top().ND; } else { S.push(mp(mojKon, mojKon)); } } else { // czyli tu juz ktos sie skonczyl, najwczesniejszy dla mnie to: najw.ST - 1; if (dbg) printf("przed ostatnim\n"); pii najw = S.top(); S.pop(); --najw.ST; mojKon = najw.ST; if (!S.empty() && S.top().ND +1 == najw.ST); else S.push(najw); } if (mojKon < a[ind]) { printf("NIE\n"); return 0; } else { res[ind] = mojKon; if (dbg) printf("\tnowy w : %d\n", mojKon); add(tree[p[ind]], mojKon); add(global, mojKon); } } } printf("%d\n", ile(global)); REP(i, n) { printf("%d\n", res[i]); } return 0; } |