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
//Przemysław Jakub Kozłowski
#include "message.h"
#include "kollib.h"
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <set>
#include <map>
#include <tr1/unordered_set>
#define FI first
#define SE second
#define MP make_pair
using namespace std;
typedef long long LL;
const int W = 1000006, MINST = 103;
int R(int a, int b) { return a+rand()%(b-a+1); }

int brut();
void PutVectorPI(int cel, const vector<pair<int,int> > &V);
void Idz(char strona, vector<pair<int,int> > &V);
void Odbierz(int cel);

int n,m;
int start[MINST];

//typedef tr1::unordered_set<int> S_;
typedef set<int> S_;
S_ Koniec, Zbior;

typedef map<int, vector<pair<int,int> > > M_;
M_ M;
typedef map<int,int> WYN_;
WYN_ WYN;

int main()
{
    n = NumberOfStudents();
    m = NumberOfQueries();

    if(n < min(W,NumberOfNodes())) // Musi być jeśli NumberOfNodes() > n, może być problem z wolnym losowaniem
    {
        if(MyNodeId() == 0) brut();
        return 0;
    }

    srand(1234545);
    for(int i = 0;i < NumberOfNodes();i++)
    {
        do start[i] = R(1,n); // Jeśli wylosuje 2 razy to samo to źle
        while(Koniec.count(start[i]));
        Koniec.insert(start[i]);
    }

    for(int i = 1;i <= m;i++)
    {
        Zbior.insert(QueryFrom(i));
        Zbior.insert(QueryTo(i));
    }
    for(int i = 0;i < NumberOfNodes();i++)
        Zbior.insert(start[i]);


    // Wysyłanie
    vector<pair<int,int> >V;

    Idz(0, V);
    PutVectorPI(0, V);
    V.clear();

    Idz(1, V);
    PutVectorPI(0, V);
    V.clear();

    Send(0);


    if(MyNodeId() == 0)
    {
        for(int i = 0;i < NumberOfNodes();i++)
        {
            Receive(i);
            Odbierz(i);
            Odbierz(i);
        }

        for(int p = start[0], odl = 0, poprz = -1;;)
        {
            WYN[p] = odl;
            M_::iterator it = M.find(p);

            pair<int,int> para;
            if(it->SE[0].FI != poprz) para = it->SE[0];
            else para = it->SE[1];

            poprz = p;
            p = para.FI;
            odl += para.SE;

            if(p == start[0]) break;
        }

        for(int i = 1;i <= m;i++)
        {
            int Ra = WYN[QueryFrom(i)];
            int Rb = WYN[QueryTo(i)];
            printf("%d\n", min((n+Ra-Rb)%n, (n+Rb-Ra)%n));
        }
    }

    return 0;
}

void PutVectorPI(int cel, const vector<pair<int,int> > &V)
{
    PutInt(cel, V.size());
    for(int i = 0;i < V.size();i++)
    {
        PutInt(cel, V[i].FI);
        PutInt(cel, V[i].SE);
    }
}

void Idz(char strona, vector<pair<int,int> > &V)
{
    typedef int (*WSK)(int);
    WSK F1 = FirstNeighbor;
    WSK F2 = SecondNeighbor;
    if(strona) swap(F1, F2);

    for(int poprz = -1, obec = start[MyNodeId()], odl = 0;;)
    {
        int nast = F1(obec);
        if(nast == poprz) nast = F2(obec);
        poprz = obec;
        obec = nast;
        odl++;

        if(Zbior.count(obec))
        {
            V.push_back(MP(obec, odl));
            odl = 0;
            if(Koniec.count(obec))
                break;
        }
    }
}

void Odbierz(int cel)
{
    int poprz = start[cel];
    int size = GetInt(cel);
    for(int j = 0;j < size;j++)
    {
        pair<int,int> para;
        para.FI = GetInt(cel);
        para.SE = GetInt(cel);
        M[poprz].push_back(para);
        poprz = para.FI;
    }
}

int brut()
{
    int n = NumberOfStudents();
    int *tab = new int[n+7], *rtab = new int[n+7];

    tab[1] = 1;
    tab[2] = FirstNeighbor(1);
    for(int i = 3;i <= n;i++)
    {
        int nast;
        nast = FirstNeighbor(tab[i-1]);
        if(nast == tab[i-2]) nast = SecondNeighbor(tab[i-1]);
        tab[i] = nast;
    }
    for(int i = 1;i <= n;i++)
        rtab[tab[i]] = i;

    int m = NumberOfQueries();
    for(int i = 1;i <= m;i++)
    {
        int a = QueryFrom(i);
        int b = QueryTo(i);
        printf("%d\n", min((n+rtab[a]-rtab[b])%n, (n+rtab[b]-rtab[a])%n));
    }

    delete [] tab;delete [] rtab;
    return 0;
}