Niestety, nie byliśmy w stanie w pełni poprawnie wyświetlić tego pliku, ponieważ nie jest zakodowany w UTF-8.
Możesz pobrać ten plik i spróbować otworzyć go samodzielnie.
#include <cstdio> #include <iostream> #include <vector> #include <algorithm> #include <unordered_map> #include <cmath> #include "kollib.h" #include "message.h" using namespace std; typedef vector<int> VI; typedef long long LL; #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 VAR(v, n) __typeof(n) v = (n) #define ALL(c) (c).begin(), (c).end() #define SIZE(x) ((int)(x).size()) #define FOREACH(i, c) for(VAR(i, (c).begin()); i != (c).end(); ++i) #define PB push_back #define ST first #define ND second #define MP make_pair #define fir FirstNeighbor #define sec SecondNeighbor typedef pair<int,int> para; para last(int a, int b, int n) { int c; REP(i,n) { c=fir(b); if (c==a) c=sec(b); a=b; b=c; } return MP(a,b); } int main() { int n, m, nr, k, a, b, d, n1, s, q, f, t, i0, i1, Q, l=0; int w[201]; para p; n=NumberOfStudents(); m=NumberOfNodes(); nr=MyNodeId(); //cout<<"nr "<<nr<<" punkt-1"; Q=NumberOfQueries(); if (Q==0) return 0; if (n<=400) { m=3; if (nr>2) return 0; } n1= (nr==m-1 ? 0 : nr+1); k=n/m; if (nr<n%m) k++; //cout<<nr<<endl; /* if (nr==0) { //cout<<"1 "; p=last(sec(1),1,k-1); } else { Receive(nr-1); a=GetInt(nr-1); p=last(a,GetInt(nr-1),k); } */ //cout<<"nr "<<nr<<" punkt -2\n"; if (nr==0) { b=sec(1); a=sec(b); if (a==1) a=fir(b); } else { Receive(nr-1); a=GetInt(nr-1); b=GetInt(nr-1); } p=last(a,b,k); // int n1= (nr==m-1 ? 0 : nr+1); if (n1!=0) { PutInt(n1, p.ST); PutInt(n1, p.ND); Send(n1); } vector<para> good; vector<para>::const_iterator it; good.reserve(k+1); REP(i,k) { int c; c=fir(b); if (c==a) c=sec(b); good.PB(MP(c,i)); a=b; b=c; } sort(ALL(good)); FOR(i,1,Q) { f=QueryFrom(i); // it=mapa.find(f); it=lower_bound(ALL(good), MP(f,0)); if ( it == good.end() ) continue; if (it->ST != f) continue; i0=it->ND; t=QueryTo(i); // it=mapa.find(t); it=lower_bound(ALL(good), MP(t,0)); if (it==good.end() || it->ST != t) { PutInt(n1, 0); //typ wiadomo�ci - licz dalej PutInt(n1, i); //nr zapytania PutInt(n1, k-i0); //czas do pierwszego z nast. przedzia�u Send(n1); } else { i1=it->ND; PutInt(0, 1); //typ wiadomo�ci - wynik PutInt(0, i); //nr zapytania PutInt(0, abs(i1-i0)); //czas Send(0); } } //cout<<"nr "<<nr<<" punkt4\n"; return 0; while (true) { s=Receive(-1); switch (GetInt(s)) { case 0: q=GetInt(s); d=GetInt(s); t=QueryTo(q); // it=mapa.find(t); it=lower_bound(ALL(good), MP(t,0)); if (it==good.end() || it->ST != t) { PutInt(n1, 0); //typ wiadomo�ci - licz dalej PutInt(n1, q); //nr zapytania PutInt(n1, d+k); //czas do pierwszego z nast. przedzia�u Send(n1); } else { i1=it->ND; d+=i1; d=min(d,n-d); PutInt(0, 1); //typ wiadomo�ci - wynik PutInt(0, q); //nr zapytania PutInt(0, d); //czas Send(0); } break; case 1: //tylko node 0! //cout<<"nr "<<nr<<" case 1\n"; q=GetInt(s); d=GetInt(s); w[q]=d; l++; if (l==Q) { FOR(i,1,m-1) { PutInt(i, -1); Send(i); } FOR(i,1,Q) cout<<w[i]<<endl; return 0; } break; case -1: //cout<<"nr "<<nr<<" case -1\n"; return 0; default: ; //cout<<"nr "<<nr<<" case ?\n"; } } }
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 | #include <cstdio> #include <iostream> #include <vector> #include <algorithm> #include <unordered_map> #include <cmath> #include "kollib.h" #include "message.h" using namespace std; typedef vector<int> VI; typedef long long LL; #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 VAR(v, n) __typeof(n) v = (n) #define ALL(c) (c).begin(), (c).end() #define SIZE(x) ((int)(x).size()) #define FOREACH(i, c) for(VAR(i, (c).begin()); i != (c).end(); ++i) #define PB push_back #define ST first #define ND second #define MP make_pair #define fir FirstNeighbor #define sec SecondNeighbor typedef pair<int,int> para; para last(int a, int b, int n) { int c; REP(i,n) { c=fir(b); if (c==a) c=sec(b); a=b; b=c; } return MP(a,b); } int main() { int n, m, nr, k, a, b, d, n1, s, q, f, t, i0, i1, Q, l=0; int w[201]; para p; n=NumberOfStudents(); m=NumberOfNodes(); nr=MyNodeId(); //cout<<"nr "<<nr<<" punkt-1"; Q=NumberOfQueries(); if (Q==0) return 0; if (n<=400) { m=3; if (nr>2) return 0; } n1= (nr==m-1 ? 0 : nr+1); k=n/m; if (nr<n%m) k++; //cout<<nr<<endl; /* if (nr==0) { //cout<<"1 "; p=last(sec(1),1,k-1); } else { Receive(nr-1); a=GetInt(nr-1); p=last(a,GetInt(nr-1),k); } */ //cout<<"nr "<<nr<<" punkt -2\n"; if (nr==0) { b=sec(1); a=sec(b); if (a==1) a=fir(b); } else { Receive(nr-1); a=GetInt(nr-1); b=GetInt(nr-1); } p=last(a,b,k); // int n1= (nr==m-1 ? 0 : nr+1); if (n1!=0) { PutInt(n1, p.ST); PutInt(n1, p.ND); Send(n1); } vector<para> good; vector<para>::const_iterator it; good.reserve(k+1); REP(i,k) { int c; c=fir(b); if (c==a) c=sec(b); good.PB(MP(c,i)); a=b; b=c; } sort(ALL(good)); FOR(i,1,Q) { f=QueryFrom(i); // it=mapa.find(f); it=lower_bound(ALL(good), MP(f,0)); if ( it == good.end() ) continue; if (it->ST != f) continue; i0=it->ND; t=QueryTo(i); // it=mapa.find(t); it=lower_bound(ALL(good), MP(t,0)); if (it==good.end() || it->ST != t) { PutInt(n1, 0); //typ wiadomo�ci - licz dalej PutInt(n1, i); //nr zapytania PutInt(n1, k-i0); //czas do pierwszego z nast. przedzia�u Send(n1); } else { i1=it->ND; PutInt(0, 1); //typ wiadomo�ci - wynik PutInt(0, i); //nr zapytania PutInt(0, abs(i1-i0)); //czas Send(0); } } //cout<<"nr "<<nr<<" punkt4\n"; return 0; while (true) { s=Receive(-1); switch (GetInt(s)) { case 0: q=GetInt(s); d=GetInt(s); t=QueryTo(q); // it=mapa.find(t); it=lower_bound(ALL(good), MP(t,0)); if (it==good.end() || it->ST != t) { PutInt(n1, 0); //typ wiadomo�ci - licz dalej PutInt(n1, q); //nr zapytania PutInt(n1, d+k); //czas do pierwszego z nast. przedzia�u Send(n1); } else { i1=it->ND; d+=i1; d=min(d,n-d); PutInt(0, 1); //typ wiadomo�ci - wynik PutInt(0, q); //nr zapytania PutInt(0, d); //czas Send(0); } break; case 1: //tylko node 0! //cout<<"nr "<<nr<<" case 1\n"; q=GetInt(s); d=GetInt(s); w[q]=d; l++; if (l==Q) { FOR(i,1,m-1) { PutInt(i, -1); Send(i); } FOR(i,1,Q) cout<<w[i]<<endl; return 0; } break; case -1: //cout<<"nr "<<nr<<" case -1\n"; return 0; default: ; //cout<<"nr "<<nr<<" case ?\n"; } } } |