#include<bits/stdc++.h> //#define int LL //#define PutInt PutLL //#define GetInt GetLL #define PII pair<int,int> #define f first #define s second #define VI vector<int> #define LL long long #define MP make_pair #define LD long double #define PB push_back #define ALL(V) V.begin(),V.end() #define abs(x) max((x),-(x)) #define PDD pair<LD,LD> #define VPII vector< PII > #define siz(V) ((int)V.size()) #define FOR(x, b, e) for(int x=b;x<=(e);x++) #define FORD(x, b, e) for(int x=b;x>=(e);x--) #define REP(x, n) for(int x=0;x<(n);x++) #define mini(a,b) a=min(a,b) #define maxi(a,b) a=max(a,b) #define VL vector<LL> using namespace std; #include "message.h" //#include "test2.h" #include "krazki.h" /* // Zwraca n (1 <= n <= 10^9) - wysokość rurki Janka (liczbę walców wchodzących // w jej skład). int PipeHeight(); // Zwraca m (1 <= m <= 10^9) - liczbę krążków, które Janek zamierza wrzucić // do rurki. int NumberOfDiscs(); // Dla danego i (1 <= i <= n) zwraca r_i (1 <= r_i <= 10^18) - średnicę otworu // wyciętego w i-tym (od góry) walcu tworzącym rurkę. long long int HoleDiameter(long long int i); // Dla danego j (1 <= j <= m) zwraca k_j (1 <= k_j <= 10^18) - średnicę krążka, // który zostanie wrzucony jako j-ty. long long int DiscDiameter(long long int j); */ const int MXNODES = 104; int NODES, ID, DISC, HOLES; int HOLES_SEG = 10; // ilość segmentów w każdym węźle TODO VPII podzial(int n, int ile) // zwraca podział 1..n na przedziały o podobnej długości { VPII res; int last = 0; REP(i, ile) { int a = last + 1; int b = a + n/ile + (n%ile > i) - 1; // to check, może na = mini(b, n); res.PB(MP(a, b)); last = b; } assert(last == n); return res; } LL get_hole_min(int a, int b) { LL res = 1e18+1; FOR(i, a, b) mini(res, HoleDiameter(i)); return res; } bool debug = 0; VPII hole_seg[MXNODES]; VL hole_results[MXNODES]; main() ///////////////////////// { NODES = NumberOfNodes(); ID = MyNodeId(); DISC = NumberOfDiscs(); HOLES = PipeHeight(); // ******************* GET HOLE SEGMENT **************************** VPII segs_decomp = podzial(HOLES, NODES * HOLES_SEG); REP(i, segs_decomp.size()) { hole_seg[i%NODES].PB(segs_decomp[i]); } for(auto it:hole_seg[ID]) { hole_results[ID].PB(get_hole_min(it.f, it.s)); } REP(i, NODES) { REP(j, hole_seg[ID].size()) { PutInt(i, hole_seg[ID][j].f); PutInt(i, hole_seg[ID][j].s); PutLL(i, hole_results[ID][j]); } PutInt(i, -1); Send(i); } vector<pair<PII, LL> > segs; REP(i, NODES) { Receive(i); while(1) { int a = GetInt(i); if(a == -1)break; int b = GetInt(i); LL r = GetLL(i); segs.PB(MP(MP(a, b), r)); } } sort(ALL(segs)); REP(i, segs.size()) { if(i) mini(segs[i].s, segs[i-1].s); // segs jest malejące } if(debug) for(auto it:segs) { cerr<<it.f.f<<" "<<it.f.s<<" "<<it.s<<endl; } // ******************* GET HOLE SEGMENT **************************** int poc = podzial(DISC, NODES)[ID].f; int kon = podzial(DISC, NODES)[ID].s; if(poc > kon) // Czy 0 zawesze coś dostanie?? TODO { PutInt(0, 1e9+1); Send(0); return 0; } vector<pair<LL, int>> disc; // szer, ile nad FOR(i, poc, kon) { disc.PB(MP(DiscDiameter(i), DISC - i)); } sort(ALL(disc)); //zapewne można bez sorta, znaleźć maksimum policzyć pozycje i coś tam reverse(ALL(disc)); LL szer = disc[0].f; int idx = HOLES; for(auto it:segs) { if(it.s < szer) // nie miesci się { idx = it.f.f; break; } } int result = 1e9; //idx = 1; int cnt = 0; int ilenadmax = DISC - poc; for(auto it:disc) //it: szer, ile_nad { while(idx <= HOLES && it.f <= HoleDiameter(idx))// dopóki spada { idx++; cnt++; if(result <= (idx - 1) - ilenadmax)break; } if(result <= (idx - 1) - ilenadmax)break; mini(result, (idx - 1) - it.s); } if(debug)cerr<<"disc: ("<<poc<<", "<<kon<<") result: "<<result<<endl; assert(cnt < HOLES / NODES + DISC / NODES + 10); PutInt(0, result); Send(0); if(ID == 0) { REP(i, NODES) { Receive(i); mini(result, GetInt(i)); } if(result < 0)result = 0; cout<<result<<endl; } }
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 | #include<bits/stdc++.h> //#define int LL //#define PutInt PutLL //#define GetInt GetLL #define PII pair<int,int> #define f first #define s second #define VI vector<int> #define LL long long #define MP make_pair #define LD long double #define PB push_back #define ALL(V) V.begin(),V.end() #define abs(x) max((x),-(x)) #define PDD pair<LD,LD> #define VPII vector< PII > #define siz(V) ((int)V.size()) #define FOR(x, b, e) for(int x=b;x<=(e);x++) #define FORD(x, b, e) for(int x=b;x>=(e);x--) #define REP(x, n) for(int x=0;x<(n);x++) #define mini(a,b) a=min(a,b) #define maxi(a,b) a=max(a,b) #define VL vector<LL> using namespace std; #include "message.h" //#include "test2.h" #include "krazki.h" /* // Zwraca n (1 <= n <= 10^9) - wysokość rurki Janka (liczbę walców wchodzących // w jej skład). int PipeHeight(); // Zwraca m (1 <= m <= 10^9) - liczbę krążków, które Janek zamierza wrzucić // do rurki. int NumberOfDiscs(); // Dla danego i (1 <= i <= n) zwraca r_i (1 <= r_i <= 10^18) - średnicę otworu // wyciętego w i-tym (od góry) walcu tworzącym rurkę. long long int HoleDiameter(long long int i); // Dla danego j (1 <= j <= m) zwraca k_j (1 <= k_j <= 10^18) - średnicę krążka, // który zostanie wrzucony jako j-ty. long long int DiscDiameter(long long int j); */ const int MXNODES = 104; int NODES, ID, DISC, HOLES; int HOLES_SEG = 10; // ilość segmentów w każdym węźle TODO VPII podzial(int n, int ile) // zwraca podział 1..n na przedziały o podobnej długości { VPII res; int last = 0; REP(i, ile) { int a = last + 1; int b = a + n/ile + (n%ile > i) - 1; // to check, może na = mini(b, n); res.PB(MP(a, b)); last = b; } assert(last == n); return res; } LL get_hole_min(int a, int b) { LL res = 1e18+1; FOR(i, a, b) mini(res, HoleDiameter(i)); return res; } bool debug = 0; VPII hole_seg[MXNODES]; VL hole_results[MXNODES]; main() ///////////////////////// { NODES = NumberOfNodes(); ID = MyNodeId(); DISC = NumberOfDiscs(); HOLES = PipeHeight(); // ******************* GET HOLE SEGMENT **************************** VPII segs_decomp = podzial(HOLES, NODES * HOLES_SEG); REP(i, segs_decomp.size()) { hole_seg[i%NODES].PB(segs_decomp[i]); } for(auto it:hole_seg[ID]) { hole_results[ID].PB(get_hole_min(it.f, it.s)); } REP(i, NODES) { REP(j, hole_seg[ID].size()) { PutInt(i, hole_seg[ID][j].f); PutInt(i, hole_seg[ID][j].s); PutLL(i, hole_results[ID][j]); } PutInt(i, -1); Send(i); } vector<pair<PII, LL> > segs; REP(i, NODES) { Receive(i); while(1) { int a = GetInt(i); if(a == -1)break; int b = GetInt(i); LL r = GetLL(i); segs.PB(MP(MP(a, b), r)); } } sort(ALL(segs)); REP(i, segs.size()) { if(i) mini(segs[i].s, segs[i-1].s); // segs jest malejące } if(debug) for(auto it:segs) { cerr<<it.f.f<<" "<<it.f.s<<" "<<it.s<<endl; } // ******************* GET HOLE SEGMENT **************************** int poc = podzial(DISC, NODES)[ID].f; int kon = podzial(DISC, NODES)[ID].s; if(poc > kon) // Czy 0 zawesze coś dostanie?? TODO { PutInt(0, 1e9+1); Send(0); return 0; } vector<pair<LL, int>> disc; // szer, ile nad FOR(i, poc, kon) { disc.PB(MP(DiscDiameter(i), DISC - i)); } sort(ALL(disc)); //zapewne można bez sorta, znaleźć maksimum policzyć pozycje i coś tam reverse(ALL(disc)); LL szer = disc[0].f; int idx = HOLES; for(auto it:segs) { if(it.s < szer) // nie miesci się { idx = it.f.f; break; } } int result = 1e9; //idx = 1; int cnt = 0; int ilenadmax = DISC - poc; for(auto it:disc) //it: szer, ile_nad { while(idx <= HOLES && it.f <= HoleDiameter(idx))// dopóki spada { idx++; cnt++; if(result <= (idx - 1) - ilenadmax)break; } if(result <= (idx - 1) - ilenadmax)break; mini(result, (idx - 1) - it.s); } if(debug)cerr<<"disc: ("<<poc<<", "<<kon<<") result: "<<result<<endl; assert(cnt < HOLES / NODES + DISC / NODES + 10); PutInt(0, result); Send(0); if(ID == 0) { REP(i, NODES) { Receive(i); mini(result, GetInt(i)); } if(result < 0)result = 0; cout<<result<<endl; } } |