#include <cstdio> #include <queue> #include <algorithm> #include<iostream> using namespace std; #define MAXN 200003 struct Grupa { unsigned long long pozycja; int nast; unsigned long long ilosc; int fi; }; Grupa tab[MAXN]; int Find(int a){ if(a == tab[a].fi)return a; int fa = Find(tab[a].fi); tab[a].fi = fa; return fa; } void Union(int a, int b){ int fa = Find(a); int fb = Find(b); if(fa != fb){ tab[fa].nast = tab[fb].nast; tab[fb].fi = fa; tab[fa].ilosc += tab[fb].ilosc; } } int n, m; enum zd_typ {ZMIANA, PIEKARNIK}; class Zdarzenie { public: unsigned long long moment; zd_typ typ; int ind1, ind2; Zdarzenie(unsigned long long m, zd_typ t, int i1, int i2) : moment(m), typ(t), ind1(i1), ind2(i2) {}; Zdarzenie() {}; }; bool operator<(const Zdarzenie &a, const Zdarzenie &b) { if(a.moment < b.moment) { return 0; } else if(a.moment == b.moment) { if(a.typ < b.typ){ return 0; } else if(a.typ == b.typ){ if(a.ind1 > b.ind1) { return 0; } } } return 1; //odwrotnie do PQ } unsigned long long t; unsigned long long d; priority_queue<Zdarzenie> PQ; unsigned long long chwila, delta_t; unsigned long long res; unsigned long long przyrost; unsigned long long nowy_koniec; unsigned long long wynik[MAXN]; unsigned long long ceiling(unsigned long long a, unsigned long long b){ if(a % b == 0){ return a/b; } return a/b + 1LL; } unsigned long long przyrost_z(int ind){ return tab[ind].ilosc*(tab[ind].ilosc - 1)/2; } Zdarzenie akt_zdarz; unsigned long long dystans, moment_spotkania; unsigned long long max_d = 0; int ilosc_wynikow = 0; string jaki(zd_typ t){ return t == 0 ? string("ZMIANA") : string("PIEKARNIK"); } int main() { ios_base::sync_with_stdio(0); cin >> n >> m; tab[0].pozycja = 0; tab[0].nast = 1; tab[0].ilosc = 1; tab[0].fi = 0; for(int i = 1; i <= n; i++){ cin >> tab[i].pozycja; tab[i].nast = (i + 1); tab[i].ilosc = 1; tab[i].fi = i; //cerr << "dodaje: " << tab[i].pozycja - tab[i-1].pozycja; PQ.push(Zdarzenie(tab[i].pozycja - tab[i - 1].pozycja, ZMIANA,i - 1, i)); } for(int i = 0; i < m; i++){ cin >> d; if(d > max_d){ max_d = d; } PQ.push(Zdarzenie(d, PIEKARNIK, i, 0)); } chwila = 0; res = 0; int i1 = 0, i2 = 0; while(!PQ.empty()){ akt_zdarz = PQ.top(); PQ.pop(); //cerr << "--zdarz: " << akt_zdarz.moment << ", " << jaki(akt_zdarz.typ) << " (" << akt_zdarz.ind1 << "," << akt_zdarz.ind2 << ")\n"; //cerr << "przyrost przed: " << przyrost << ", res przed: " << res << "\n"; delta_t = (akt_zdarz.moment - chwila); res += przyrost * delta_t; //jeszcze stary przyrost if(akt_zdarz.typ == PIEKARNIK) { wynik[akt_zdarz.ind1] = res; chwila = akt_zdarz.moment; ilosc_wynikow++; if(ilosc_wynikow == m){ break; } } else{ i1 = akt_zdarz.ind1; i2 = akt_zdarz.ind2; if(Find(i1) != Find(i2)){ //res += przyrost_z(i2); i1 = Find(i1); i2 = Find(i2); przyrost -= przyrost_z(i1); przyrost -= przyrost_z(i2); nowy_koniec = (tab[i1].ilosc*akt_zdarz.moment + tab[i1].pozycja); res += tab[i2].ilosc*(nowy_koniec - tab[i2].pozycja); Union(i1, i2); przyrost += przyrost_z(i1); chwila = akt_zdarz.moment; dystans = (tab[tab[i1].nast].pozycja - tab[i1].pozycja); moment_spotkania = /*chwila + */ceiling(dystans, tab[i1].ilosc); //? //fprintf(stderr,"i1: %d\n", i1); if(moment_spotkania <= chwila && tab[i1].nast != (n+1)) { PQ.push(Zdarzenie(chwila, ZMIANA, i1, tab[i1].nast)); } else if(moment_spotkania <= max_d && tab[i1].nast != (n+1)) { PQ.push(Zdarzenie(moment_spotkania, ZMIANA, i1, tab[i1].nast)); } } else { chwila = akt_zdarz.moment; } } // cerr << "przyrost po: " << przyrost << ", res po: " << res << "\n"; } for(int i = 0; i < m; i++){ cout << wynik[i] << "\n"; } cout << endl; 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 202 203 204 205 206 | #include <cstdio> #include <queue> #include <algorithm> #include<iostream> using namespace std; #define MAXN 200003 struct Grupa { unsigned long long pozycja; int nast; unsigned long long ilosc; int fi; }; Grupa tab[MAXN]; int Find(int a){ if(a == tab[a].fi)return a; int fa = Find(tab[a].fi); tab[a].fi = fa; return fa; } void Union(int a, int b){ int fa = Find(a); int fb = Find(b); if(fa != fb){ tab[fa].nast = tab[fb].nast; tab[fb].fi = fa; tab[fa].ilosc += tab[fb].ilosc; } } int n, m; enum zd_typ {ZMIANA, PIEKARNIK}; class Zdarzenie { public: unsigned long long moment; zd_typ typ; int ind1, ind2; Zdarzenie(unsigned long long m, zd_typ t, int i1, int i2) : moment(m), typ(t), ind1(i1), ind2(i2) {}; Zdarzenie() {}; }; bool operator<(const Zdarzenie &a, const Zdarzenie &b) { if(a.moment < b.moment) { return 0; } else if(a.moment == b.moment) { if(a.typ < b.typ){ return 0; } else if(a.typ == b.typ){ if(a.ind1 > b.ind1) { return 0; } } } return 1; //odwrotnie do PQ } unsigned long long t; unsigned long long d; priority_queue<Zdarzenie> PQ; unsigned long long chwila, delta_t; unsigned long long res; unsigned long long przyrost; unsigned long long nowy_koniec; unsigned long long wynik[MAXN]; unsigned long long ceiling(unsigned long long a, unsigned long long b){ if(a % b == 0){ return a/b; } return a/b + 1LL; } unsigned long long przyrost_z(int ind){ return tab[ind].ilosc*(tab[ind].ilosc - 1)/2; } Zdarzenie akt_zdarz; unsigned long long dystans, moment_spotkania; unsigned long long max_d = 0; int ilosc_wynikow = 0; string jaki(zd_typ t){ return t == 0 ? string("ZMIANA") : string("PIEKARNIK"); } int main() { ios_base::sync_with_stdio(0); cin >> n >> m; tab[0].pozycja = 0; tab[0].nast = 1; tab[0].ilosc = 1; tab[0].fi = 0; for(int i = 1; i <= n; i++){ cin >> tab[i].pozycja; tab[i].nast = (i + 1); tab[i].ilosc = 1; tab[i].fi = i; //cerr << "dodaje: " << tab[i].pozycja - tab[i-1].pozycja; PQ.push(Zdarzenie(tab[i].pozycja - tab[i - 1].pozycja, ZMIANA,i - 1, i)); } for(int i = 0; i < m; i++){ cin >> d; if(d > max_d){ max_d = d; } PQ.push(Zdarzenie(d, PIEKARNIK, i, 0)); } chwila = 0; res = 0; int i1 = 0, i2 = 0; while(!PQ.empty()){ akt_zdarz = PQ.top(); PQ.pop(); //cerr << "--zdarz: " << akt_zdarz.moment << ", " << jaki(akt_zdarz.typ) << " (" << akt_zdarz.ind1 << "," << akt_zdarz.ind2 << ")\n"; //cerr << "przyrost przed: " << przyrost << ", res przed: " << res << "\n"; delta_t = (akt_zdarz.moment - chwila); res += przyrost * delta_t; //jeszcze stary przyrost if(akt_zdarz.typ == PIEKARNIK) { wynik[akt_zdarz.ind1] = res; chwila = akt_zdarz.moment; ilosc_wynikow++; if(ilosc_wynikow == m){ break; } } else{ i1 = akt_zdarz.ind1; i2 = akt_zdarz.ind2; if(Find(i1) != Find(i2)){ //res += przyrost_z(i2); i1 = Find(i1); i2 = Find(i2); przyrost -= przyrost_z(i1); przyrost -= przyrost_z(i2); nowy_koniec = (tab[i1].ilosc*akt_zdarz.moment + tab[i1].pozycja); res += tab[i2].ilosc*(nowy_koniec - tab[i2].pozycja); Union(i1, i2); przyrost += przyrost_z(i1); chwila = akt_zdarz.moment; dystans = (tab[tab[i1].nast].pozycja - tab[i1].pozycja); moment_spotkania = /*chwila + */ceiling(dystans, tab[i1].ilosc); //? //fprintf(stderr,"i1: %d\n", i1); if(moment_spotkania <= chwila && tab[i1].nast != (n+1)) { PQ.push(Zdarzenie(chwila, ZMIANA, i1, tab[i1].nast)); } else if(moment_spotkania <= max_d && tab[i1].nast != (n+1)) { PQ.push(Zdarzenie(moment_spotkania, ZMIANA, i1, tab[i1].nast)); } } else { chwila = akt_zdarz.moment; } } // cerr << "przyrost po: " << przyrost << ", res po: " << res << "\n"; } for(int i = 0; i < m; i++){ cout << wynik[i] << "\n"; } cout << endl; return 0; } |