#include "message.h" //* #include "dzialka.h" /*/ bool IsUsableCell(int x, int y){ return x+y+1;} int GetFieldHeight(){ return 75000;} int GetFieldWidth(){ return 75000;} //*/ /* //TUU #ifndef LOCAL //#define _GLIBCXX_DEBUG //bool IsUsableCell(int x, int y){ return x+y;} //int GetFieldHeight(){ return 1;} //int GetFieldWidth(){ return 1;} #else int mdi(int a = 0, int b = 0){return a+b+1;} #define MyNodeId mdi #define GetInt mdi #define Send mdi #define PutInt mdi #define Receive mdi #define NumberOfNodes mdi #define PutLL mdi #define GetLL mdi #endif */ #include<bits/stdc++.h> #define rep(i,k,n) for(ll i= (ll) k;i< (ll) n;i++) #define all(v) (v).begin(), (v).end() #define SZ(v) (int)((v).size()) #define pb push_back #define ft first #define sd second typedef long long ll; typedef unsigned long long ull; typedef long double ld; const long long INF = 4e18L + 1; const int IINF = 2e9 + 1; using namespace std; int szer; int wys; int id; int moj_x_start; int moj_x_koniec;//juz nie wchodzi //TUU int cnt; const int dl = 750; const int maksbok = 75000; int ile_nodow; bool czy_pole(int x, int y) { x += moj_x_start; if (x >= szer || y >= wys || x < 0 || y < 0) return 0; return IsUsableCell(y, x); } bitset < maksbok > tab[dl+1]; void start() { id = MyNodeId(); wys = GetFieldHeight(); szer = GetFieldWidth(); vector < int > V; for(int i=0; i<ile_nodow+5; i++) V.pb(i*dl); moj_x_start = V[id]; moj_x_koniec = V[id+1]; for(int x=0; x<dl; x++) for(int y=0; y<maksbok; y++) tab[x][y] = czy_pole(x, y); } /* void wypisz(int x, int y) { for(int i=0; i<y; i++)//y { for(int j=0; j<x; j++) cout<<tab[j][i] << " "; cout<<endl; } } */ ll jak_daleko[maksbok+5]; int ile_w_lewo[maksbok+5]; int ile_w_prawo[maksbok+5]; struct Struktura { vector < pair<ll, ll> > V;//jak daleko, y ll suma; ll nast_ind; void czysc() { V.clear(); V.pb({0, -1}); suma = 0; nast_ind = 0; } Struktura() { V.reserve(maksbok+1); czysc(); } void dodaj(ll co) { cnt++; //cout << co << " " << V.back().ft << endl; if (co > V.back().ft) { suma += co; V.pb({co, nast_ind}); } else if (co == V.back().ft) { suma += co; V.back().sd = nast_ind; } else { while(V.back().ft > co) { cnt++; int sz = SZ(V); ll dl_p = V[sz-1].sd - V[sz-2].sd; suma -= dl_p * (V.back().ft - co); V.pop_back(); } suma += co; if (V.back().ft == co) V.back().sd = nast_ind; else V.pb({co, nast_ind}); } nast_ind++; } ll akt_wyn(){ return suma; } }; void slij(int przes) { int sas = id + przes; if (sas >= ile_nodow) return; for(int i=0; i<maksbok; i++) { PutInt(sas, ile_w_lewo[i]); } //cout << "Sle: " << id << " " << sas<<endl; Send(sas); } void odbierz(int przes) { int sas = id - przes; if (sas < 0) return; //cout << "Biore: " << id << " " << sas<<endl; Receive(sas); for(int i=0; i<maksbok; i++) { ll pom = GetInt(sas); if (ile_w_lewo[i] == przes*dl) ile_w_lewo[i] += pom; } } int main() { #ifndef LOCAL ios_base::sync_with_stdio(0); cin.tie(0); #endif ile_nodow = NumberOfNodes(); start(); ll res = 0; Struktura str; for(int i=0; i<maksbok; i++) { int ile = 0; for(int j=0; j<dl; j++) { if (tab[j][i]) ile++; else break; } ile_w_prawo[i] = ile; ile = 0; for(int j=-1; j>=-dl; j--) { if (czy_pole(j, i)) ile++; else break; } ile_w_lewo[i] = ile; } vector < int > przes = {1, 2, 4, 8, 16, 32, 64}; for(auto el : przes) { slij(el); odbierz(el); } for(int i=0; i<dl; i++) { str.czysc(); for(int j=0; j<maksbok; j++) { if (tab[i][j] == 0) jak_daleko[j] = 0; else jak_daleko[j]++; str.dodaj(jak_daleko[j]); res += str.akt_wyn(); } } if (id != 0) { //Struktura str; for(int j=1; j<=dl; j++)//ile chce miec po prawej { str.czysc(); for(int k=0; k<maksbok; k++) { if (ile_w_prawo[k] < j) { str.czysc(); continue; } str.dodaj(ile_w_lewo[k]); res += str.akt_wyn(); } } PutLL(0, res); Send(0); } else { for(int i=1; i<ile_nodow; i++) { Receive(i); res += GetLL(i); } } if (id == 0) cout<<res; }
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 | #include "message.h" //* #include "dzialka.h" /*/ bool IsUsableCell(int x, int y){ return x+y+1;} int GetFieldHeight(){ return 75000;} int GetFieldWidth(){ return 75000;} //*/ /* //TUU #ifndef LOCAL //#define _GLIBCXX_DEBUG //bool IsUsableCell(int x, int y){ return x+y;} //int GetFieldHeight(){ return 1;} //int GetFieldWidth(){ return 1;} #else int mdi(int a = 0, int b = 0){return a+b+1;} #define MyNodeId mdi #define GetInt mdi #define Send mdi #define PutInt mdi #define Receive mdi #define NumberOfNodes mdi #define PutLL mdi #define GetLL mdi #endif */ #include<bits/stdc++.h> #define rep(i,k,n) for(ll i= (ll) k;i< (ll) n;i++) #define all(v) (v).begin(), (v).end() #define SZ(v) (int)((v).size()) #define pb push_back #define ft first #define sd second typedef long long ll; typedef unsigned long long ull; typedef long double ld; const long long INF = 4e18L + 1; const int IINF = 2e9 + 1; using namespace std; int szer; int wys; int id; int moj_x_start; int moj_x_koniec;//juz nie wchodzi //TUU int cnt; const int dl = 750; const int maksbok = 75000; int ile_nodow; bool czy_pole(int x, int y) { x += moj_x_start; if (x >= szer || y >= wys || x < 0 || y < 0) return 0; return IsUsableCell(y, x); } bitset < maksbok > tab[dl+1]; void start() { id = MyNodeId(); wys = GetFieldHeight(); szer = GetFieldWidth(); vector < int > V; for(int i=0; i<ile_nodow+5; i++) V.pb(i*dl); moj_x_start = V[id]; moj_x_koniec = V[id+1]; for(int x=0; x<dl; x++) for(int y=0; y<maksbok; y++) tab[x][y] = czy_pole(x, y); } /* void wypisz(int x, int y) { for(int i=0; i<y; i++)//y { for(int j=0; j<x; j++) cout<<tab[j][i] << " "; cout<<endl; } } */ ll jak_daleko[maksbok+5]; int ile_w_lewo[maksbok+5]; int ile_w_prawo[maksbok+5]; struct Struktura { vector < pair<ll, ll> > V;//jak daleko, y ll suma; ll nast_ind; void czysc() { V.clear(); V.pb({0, -1}); suma = 0; nast_ind = 0; } Struktura() { V.reserve(maksbok+1); czysc(); } void dodaj(ll co) { cnt++; //cout << co << " " << V.back().ft << endl; if (co > V.back().ft) { suma += co; V.pb({co, nast_ind}); } else if (co == V.back().ft) { suma += co; V.back().sd = nast_ind; } else { while(V.back().ft > co) { cnt++; int sz = SZ(V); ll dl_p = V[sz-1].sd - V[sz-2].sd; suma -= dl_p * (V.back().ft - co); V.pop_back(); } suma += co; if (V.back().ft == co) V.back().sd = nast_ind; else V.pb({co, nast_ind}); } nast_ind++; } ll akt_wyn(){ return suma; } }; void slij(int przes) { int sas = id + przes; if (sas >= ile_nodow) return; for(int i=0; i<maksbok; i++) { PutInt(sas, ile_w_lewo[i]); } //cout << "Sle: " << id << " " << sas<<endl; Send(sas); } void odbierz(int przes) { int sas = id - przes; if (sas < 0) return; //cout << "Biore: " << id << " " << sas<<endl; Receive(sas); for(int i=0; i<maksbok; i++) { ll pom = GetInt(sas); if (ile_w_lewo[i] == przes*dl) ile_w_lewo[i] += pom; } } int main() { #ifndef LOCAL ios_base::sync_with_stdio(0); cin.tie(0); #endif ile_nodow = NumberOfNodes(); start(); ll res = 0; Struktura str; for(int i=0; i<maksbok; i++) { int ile = 0; for(int j=0; j<dl; j++) { if (tab[j][i]) ile++; else break; } ile_w_prawo[i] = ile; ile = 0; for(int j=-1; j>=-dl; j--) { if (czy_pole(j, i)) ile++; else break; } ile_w_lewo[i] = ile; } vector < int > przes = {1, 2, 4, 8, 16, 32, 64}; for(auto el : przes) { slij(el); odbierz(el); } for(int i=0; i<dl; i++) { str.czysc(); for(int j=0; j<maksbok; j++) { if (tab[i][j] == 0) jak_daleko[j] = 0; else jak_daleko[j]++; str.dodaj(jak_daleko[j]); res += str.akt_wyn(); } } if (id != 0) { //Struktura str; for(int j=1; j<=dl; j++)//ile chce miec po prawej { str.czysc(); for(int k=0; k<maksbok; k++) { if (ile_w_prawo[k] < j) { str.czysc(); continue; } str.dodaj(ile_w_lewo[k]); res += str.akt_wyn(); } } PutLL(0, res); Send(0); } else { for(int i=1; i<ile_nodow; i++) { Receive(i); res += GetLL(i); } } if (id == 0) cout<<res; } |