#include <iostream> #include <cstdio> #include <vector> #include <algorithm> #include "skup.h" #include "message.h" using namespace std; int N, nr, ilenowych, bnr; /*int NumberOfCompanies() {} int GetShareCost(int aa) {} int NumberOfNodes() {} int MyNodeId() {} void Receive(int aa) {} int GetInt(int aa) {} char GetChar(int aa) {} void Send(int aa) {} void PutInt(int aa, int bb) {} void PutChar(int aa, char bb) {}*/ vector <int> wstecz[105]; bool czyodebrac[105]; int ile[105]; int tab[105][1005]; bool wysylamy; bool majawszystko[105]; vector <int> wszystkie; long long result; int main () { N = NumberOfNodes(); nr = MyNodeId(); ile[nr] = NumberOfCompanies(); for (int i = 0; i < ile[nr]; ++i) tab[nr][i] = GetShareCost(i); wysylamy = 1; for (int i = 0; i < N; ++i) czyodebrac[i] = 1; czyodebrac[nr] = 0; wstecz[0].push_back(nr); for (int i = 0; i <= N; ++i) { if (wysylamy) { ilenowych = wstecz[i].size(); for (int j = 0; j < N; ++j) if (j != nr) { PutInt(j, ilenowych); for (int k = 0; k < min(50, ilenowych); ++k) { bnr = wstecz[i][k]; PutInt(j, bnr); PutInt(j, ile[bnr]); for (int l = 0; l < ile[bnr]; ++l) PutInt(j, tab[bnr][l]); } Send(j); for (int k = 50; k < ilenowych; ++k) { bnr = wstecz[i][k]; PutInt(j, bnr); PutInt(j, ile[bnr]); for (int l = 0; l < ile[bnr]; ++l) PutInt(j, tab[bnr][l]); } if (ilenowych > 50) Send(j); } if (ilenowych == 0) wysylamy = 0; } for (int j = 0; j < N; ++j) if (czyodebrac[j]) { Receive(j); ilenowych = GetInt(j); for (int k = 0; k < min(50, ilenowych); ++k) { bnr = GetInt(j); if (ile[bnr] == 0) wstecz[i + 1].push_back(bnr); ile[bnr] = GetInt(j); for (int l = 0; l < ile[bnr]; ++l) tab[bnr][l] = GetInt(j); } if (ilenowych > 50) Receive(j); for (int k = 50; k < ilenowych; ++k) { bnr = GetInt(j); if (ile[bnr] == 0) wstecz[i + 1].push_back(bnr); ile[bnr] = GetInt(j); for (int l = 0; l < ile[bnr]; ++l) tab[bnr][l] = GetInt(j); } if (ilenowych == 0) czyodebrac[j] = 0; } } for (int i = 0; i <= N; ++i) wstecz[i].clear(); wysylamy = 1; for (int i = 0; i < N; ++i) if (ile[i] == 0) wysylamy = 0; if (wysylamy) { wstecz[0].push_back(nr); majawszystko[nr] = 1; } wysylamy = 1; for (int i = 0; i < N; ++i) czyodebrac[i] = 1; czyodebrac[nr] = 0; for (int i = 0; i <= N; ++i) { if (wysylamy) { ilenowych = wstecz[i].size(); for (int j = 0; j < N; ++j) if (j != nr) { PutInt(j, ilenowych); for (int k = 0; k < ilenowych; ++k) PutInt(j, wstecz[i][k]); Send(j); } if (ilenowych == 0) wysylamy = 0; } for (int j = 0; j < N; ++j) if (czyodebrac[j]) { Receive(j); ilenowych = GetInt(j); for (int k = 0; k < ilenowych; ++k) { bnr = GetInt(j); if (majawszystko[bnr] == 0) wstecz[i + 1].push_back(bnr); majawszystko[bnr] = 1; } if (ilenowych == 0) czyodebrac[j] = 0; } } if (majawszystko[nr] == 0) return 0; for (int i = 0; i < nr; ++i) if (majawszystko[i]) return 0; for (int i = 0; i < N; ++i) for (int j = 0; j < ile[i]; ++j) wszystkie.push_back(tab[i][j]); sort(wszystkie.begin(), wszystkie.end()); bnr = wszystkie.size(); for (int i = 0; i < bnr; ++i) result += (long long)(bnr - i) * (long long)(wszystkie[i]); printf("%lld\n", result); 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 | #include <iostream> #include <cstdio> #include <vector> #include <algorithm> #include "skup.h" #include "message.h" using namespace std; int N, nr, ilenowych, bnr; /*int NumberOfCompanies() {} int GetShareCost(int aa) {} int NumberOfNodes() {} int MyNodeId() {} void Receive(int aa) {} int GetInt(int aa) {} char GetChar(int aa) {} void Send(int aa) {} void PutInt(int aa, int bb) {} void PutChar(int aa, char bb) {}*/ vector <int> wstecz[105]; bool czyodebrac[105]; int ile[105]; int tab[105][1005]; bool wysylamy; bool majawszystko[105]; vector <int> wszystkie; long long result; int main () { N = NumberOfNodes(); nr = MyNodeId(); ile[nr] = NumberOfCompanies(); for (int i = 0; i < ile[nr]; ++i) tab[nr][i] = GetShareCost(i); wysylamy = 1; for (int i = 0; i < N; ++i) czyodebrac[i] = 1; czyodebrac[nr] = 0; wstecz[0].push_back(nr); for (int i = 0; i <= N; ++i) { if (wysylamy) { ilenowych = wstecz[i].size(); for (int j = 0; j < N; ++j) if (j != nr) { PutInt(j, ilenowych); for (int k = 0; k < min(50, ilenowych); ++k) { bnr = wstecz[i][k]; PutInt(j, bnr); PutInt(j, ile[bnr]); for (int l = 0; l < ile[bnr]; ++l) PutInt(j, tab[bnr][l]); } Send(j); for (int k = 50; k < ilenowych; ++k) { bnr = wstecz[i][k]; PutInt(j, bnr); PutInt(j, ile[bnr]); for (int l = 0; l < ile[bnr]; ++l) PutInt(j, tab[bnr][l]); } if (ilenowych > 50) Send(j); } if (ilenowych == 0) wysylamy = 0; } for (int j = 0; j < N; ++j) if (czyodebrac[j]) { Receive(j); ilenowych = GetInt(j); for (int k = 0; k < min(50, ilenowych); ++k) { bnr = GetInt(j); if (ile[bnr] == 0) wstecz[i + 1].push_back(bnr); ile[bnr] = GetInt(j); for (int l = 0; l < ile[bnr]; ++l) tab[bnr][l] = GetInt(j); } if (ilenowych > 50) Receive(j); for (int k = 50; k < ilenowych; ++k) { bnr = GetInt(j); if (ile[bnr] == 0) wstecz[i + 1].push_back(bnr); ile[bnr] = GetInt(j); for (int l = 0; l < ile[bnr]; ++l) tab[bnr][l] = GetInt(j); } if (ilenowych == 0) czyodebrac[j] = 0; } } for (int i = 0; i <= N; ++i) wstecz[i].clear(); wysylamy = 1; for (int i = 0; i < N; ++i) if (ile[i] == 0) wysylamy = 0; if (wysylamy) { wstecz[0].push_back(nr); majawszystko[nr] = 1; } wysylamy = 1; for (int i = 0; i < N; ++i) czyodebrac[i] = 1; czyodebrac[nr] = 0; for (int i = 0; i <= N; ++i) { if (wysylamy) { ilenowych = wstecz[i].size(); for (int j = 0; j < N; ++j) if (j != nr) { PutInt(j, ilenowych); for (int k = 0; k < ilenowych; ++k) PutInt(j, wstecz[i][k]); Send(j); } if (ilenowych == 0) wysylamy = 0; } for (int j = 0; j < N; ++j) if (czyodebrac[j]) { Receive(j); ilenowych = GetInt(j); for (int k = 0; k < ilenowych; ++k) { bnr = GetInt(j); if (majawszystko[bnr] == 0) wstecz[i + 1].push_back(bnr); majawszystko[bnr] = 1; } if (ilenowych == 0) czyodebrac[j] = 0; } } if (majawszystko[nr] == 0) return 0; for (int i = 0; i < nr; ++i) if (majawszystko[i]) return 0; for (int i = 0; i < N; ++i) for (int j = 0; j < ile[i]; ++j) wszystkie.push_back(tab[i][j]); sort(wszystkie.begin(), wszystkie.end()); bnr = wszystkie.size(); for (int i = 0; i < bnr; ++i) result += (long long)(bnr - i) * (long long)(wszystkie[i]); printf("%lld\n", result); return 0; } |