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
#include <iostream>
#include "message.h"
#include "teatr.h"

using namespace std;

int main()
{
    int n = GetN(), kombinacje = 0;
    
    for (int i = 1 + MyNodeId(); i < n; i ++)
    {
        if (GetElement(i) < GetElement(MyNodeId()))
            kombinacje++;
    }
    
    if (MyNodeId() > 0)
    {
        PutInt(0, kombinacje);
        Send(0);
    }
    
    else
    {
        for (int instancja = 1; instancja < NumberOfNodes(); instancja++) 
	{
      Receive(instancja);
      kombinacje += GetInt(instancja);
    }
    cout << kombinacje << endl;
    }
    
    return 0;
}