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
#include "kollib.h"
#include "message.h"
#include <stdio.h>
#include <stdlib.h>

#define MAKS_PYT    200
#define MAKS_PKT    50000
#define MAKS_WEZ    100

struct inf
{
    int nr;
    int nast1;
    int odl1;
    int nast2;
    int odl2;
};
typedef struct inf t_inf;

t_inf dane[MAKS_PKT];
int licz_stud, licz_pyt, licz_pkt, licz_zad;

int porownaj(const void *e1, const void *e2)
{
    t_inf *d1 = (t_inf *) e1;
    t_inf *d2 = (t_inf *) e2;

    return d1->nr - d2->nr;
}

int jest_st0(int nr)
{
    int i;

    for (i = licz_pkt - 1; i >= 0; i--)
        if (dane[i].nr == nr)
            break;
    return i;
}

int jest_st(int nr)
{
    int a, b, c, n;

    for(a = 0, b = licz_pkt - 1; a <= b;)
    {
        c = (a + b) >> 1;
        n = dane[c].nr;
        if (n < nr)
            a = c + 1;
        else if (n > nr)
            b = c - 1;
        else
            return c;
    }
    return -1;
}

int main()
{
    int i, j, licz_wez, nr_wez, od_st, do_st, ost_st, nr_st, odl, nr_pkt, kier, akt_st;
    long long pocz, kon;

    licz_wez = NumberOfNodes();
    nr_wez = MyNodeId();
    licz_stud = NumberOfStudents();
    licz_pyt = NumberOfQueries();
//    if (licz_stud < MAKS_PKT)
//        licz_wez = 1;
    for (licz_pkt = 0, i = 1; i <= licz_pyt; i++)
    {
        od_st = QueryFrom(i);
        do_st = QueryTo(i);
        if (od_st != do_st)
        {
            if (jest_st0(od_st) < 0)
            {
                dane[licz_pkt].nr = od_st;
                dane[licz_pkt].nast1 = 0;
                dane[licz_pkt].nast2 = 0;
                dane[licz_pkt].odl1 = 0;
                dane[licz_pkt].odl2 = 0;
                licz_pkt++;
            }
            if (jest_st0(do_st) < 0)
            {
                dane[licz_pkt].nr = do_st;
                dane[licz_pkt].nast1 = 0;
                dane[licz_pkt].nast2 = 0;
                dane[licz_pkt].odl1 = 0;
                dane[licz_pkt].odl2 = 0;
                licz_pkt++;
            }
        }
    }
    qsort(dane, licz_pkt, sizeof(t_inf), porownaj);
    if (licz_stud >= licz_wez * MAKS_PKT)
    {
        for (nr_st = j = licz_stud / MAKS_PKT, nr_pkt = i = licz_pkt; i < MAKS_PKT; i++, nr_st += j)
        {
            if (jest_st(nr_st) < 0)
            {
                dane[nr_pkt].nr = nr_st;
                dane[nr_pkt].nast1 = 0;
                dane[nr_pkt].nast2 = 0;
                dane[nr_pkt].odl1 = 0;
                dane[nr_pkt].odl2 = 0;
                nr_pkt++;
            }
        }
        licz_pkt = nr_pkt;
        qsort(dane, licz_pkt, sizeof(t_inf), porownaj);
    }
    licz_zad = licz_pkt << 1;
    if (licz_pyt > 0 && nr_wez < licz_wez)
    {
        pocz = (long long) nr_wez * (long long) licz_pkt / (long long) licz_wez;
        kon = (long long) (nr_wez + 1) * (long long ) licz_pkt / (long long) licz_wez - 1;

        for (nr_pkt = pocz; nr_pkt <= kon; nr_pkt++)
        {
            for (kier = 0; kier <= 1; kier++)
            {
                ost_st = dane[nr_pkt].nr;
                akt_st = kier ? SecondNeighbor(ost_st) : FirstNeighbor(ost_st);
                for (i = 1; jest_st(akt_st) < 0; i++)
                {
                    j = FirstNeighbor(akt_st);
                    if (j == ost_st)
                        j = SecondNeighbor(akt_st);
                    ost_st = akt_st;
                    akt_st = j;
                }
                if (kier == 0)
                {
                    dane[nr_pkt].nast1 = akt_st;
                    dane[nr_pkt].odl1 = i;
                }
                else
                {
                    dane[nr_pkt].nast2 = akt_st;
                    dane[nr_pkt].odl2 = i;
                }
            }
        }
        if (nr_wez > 0)
        {
            PutInt(0, pocz);
            PutInt(0, kon);
            for (nr_pkt = pocz; nr_pkt <= kon; nr_pkt++)
            {
                PutInt(0, dane[nr_pkt].nast1);
                PutInt(0, dane[nr_pkt].odl1);
                PutInt(0, dane[nr_pkt].nast2);
                PutInt(0, dane[nr_pkt].odl2);
            }
            Send(0);
        }
        else
        {
            for (i = 1; i < licz_wez; i++)
            {
                j = Receive(-1);
                pocz = GetInt(j);
                kon = GetInt(j);
                for (nr_pkt = pocz; nr_pkt <= kon; nr_pkt++)
                {
                    dane[nr_pkt].nast1 = GetInt(j);
                    dane[nr_pkt].odl1 = GetInt(j);
                    dane[nr_pkt].nast2 = GetInt(j);
                    dane[nr_pkt].odl2 = GetInt(j);
                }
            }
            for (i = 1; i <= licz_pyt; i++)
            {
                od_st = QueryFrom(i);
                do_st = QueryTo(i);
                for (akt_st = od_st, ost_st = odl = 0; akt_st != do_st;)
                {
                    nr_pkt = jest_st(akt_st);
                    if (nr_pkt < 0)
                        break;
                    j = dane[nr_pkt].nast1;
                    if (j == ost_st)
                    {
                        j = dane[nr_pkt].nast2;
                        odl += dane[nr_pkt].odl2;
                    }
                    else
                        odl += dane[nr_pkt].odl1;
                    ost_st = akt_st;
                    akt_st = j;
                }
                if (odl > licz_stud - odl)
                    odl = licz_stud - odl;
                printf("%d\n", odl);
            }
//            for (i = 0; i < licz_pkt; i++)
//                printf("%d\t%d\t%d\t%d\t%d\t%d\n", i, dane[i].nr, dane[i].nast1, dane[i].odl1, dane[i].nast2, dane[i].odl2);
        }
    }
    return 0;
}