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
#include <iostream>
#include "kollib.h"
#include "message.h"
#include <cmath>
#include <vector>
using namespace std;

int main()
{
    ios_base::sync_with_stdio(0);
    int left,right;
    int m=NumberOfQueries();
    int ile_instancji=NumberOfNodes();
    int MyID=MyNodeId();
    long double tmp;
    int dzielnik;

    if(m < ile_instancji)
            dzielnik=m;
    else
        dzielnik=ile_instancji;

    if(MyID==0)
        {
            left=1;
        }
    else
    {
        tmp=m*MyID;
        tmp=tmp/dzielnik;
        tmp=floor(tmp) + 1;
        left=tmp;
    }
    tmp=m*(MyID+1);
    tmp=tmp/dzielnik;
    tmp=floor(tmp);
    right=tmp;
    int ile_uczniow=NumberOfStudents();
    int a,b;
    int tmp1,tmp2;
    int time=0;
    vector<int> wyniki;
    int poprzednik1,poprzednik2;

    for(int i=left ; i<=right ; i++)
    {
        if(i > m)
            break;
        a=QueryFrom(i);
        b=QueryTo(i);
        time=1;
        int wynik=0;
        tmp1=FirstNeighbor(a);
        tmp2=SecondNeighbor(a);

        if(a != b)
        {
            poprzednik1=a;
            poprzednik2=a;
        while(true)
        {
            if(tmp1 == b || tmp2 == b)
            {
                wynik=time;
                break;
            }
                time++;
            if(FirstNeighbor(tmp1) != poprzednik1)
            {
                poprzednik1=tmp1;
                tmp1=FirstNeighbor(tmp1);
            }
            else
            {
                poprzednik1=tmp1;
                tmp1=SecondNeighbor(tmp1);
            }

            if(FirstNeighbor(tmp2) != poprzednik2)
            {
                poprzednik2=tmp2;
                tmp2=FirstNeighbor(tmp2);
            }
            else
            {
                poprzednik2=tmp2;
                tmp2=SecondNeighbor(tmp2);
            }

        }
        }
        if(MyID==0)
            {
                cout<<wynik<<endl;
            }
        else
        {
            wyniki.push_back(wynik);
        }
    }

    if(MyID > 0)
    {
        wyniki.push_back(-1);
        for(int i=0;i<wyniki.size();i++)
        {
            PutInt(0,wyniki[i]);
            Send(0);
        }

    }
    else //MyId==0
    {
        int pom;
        for(int i=1;i<ile_instancji;i++)
        {
            Receive(i);
            pom=GetInt(i);
            while(pom != -1)
            {
                cout<<pom<<endl;
                Receive(i);
                pom=GetInt(i);
            }

        }

    }

    return 0;
}