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

using namespace std;

int main()
{
    int n;
    n=GetN();
    int ilemam;

    if(n<100){
        if(MyNodeId()>0) return 0;
        else
        {
            vector<int>wzrosty(n);
            int maks2=0;
            for(int i=0; i<n; i++)
            {
                wzrosty[i]=GetElement(i);
                if(wzrosty[i]>maks2) maks2=wzrosty[i];
            }
            int moje2=0; //liczba konfliktow w danej instancji
            vector<int>sumy2(maks2+1);
            for(int i=0; i<n; i++)
            {
                for(int j=wzrosty[i]-1; j>=1; j--)
                {
                    sumy2[j]++;
                }
                moje2+=sumy2[wzrosty[i]];
            }
            cout << moje2;
            return 0;
        }
    }
    //ilemam=n/NumberOfNodes();
    //if(MyNodeId()==99) ilemam=n-99*(n/NumberOfNodes());
    //vector<int>wzrost(ilemam);
    vector<int>wzrost;
    int maks=0;
   /* for(int i=MyNodeId()*ilemam; i<=MyNodeId()*ilemam+ilemam; i++)
    {
        wzrost[i]=GetElement(i);
        if(wzrost[i]>maks) maks=wzrost[i];
    }*/
    for(int i=(n*MyNodeId()/NumberOfNodes()); i<(n*(MyNodeId()+1)/NumberOfNodes()); i++)
    {
        int dane=GetElement(i);
        wzrost.push_back(dane);
        if(dane>maks) maks=dane;
    }
    if(MyNodeId>0)
    {
        PutInt(0, maks);
        Send(0);
    }
    else
    {
        for(int instancja=1; instancja<NumberOfNodes(); instancja++)
        {
            Receive(instancja);
            int odebrany=GetInt(instancja);
            if(odebrany>maks) maks=odebrany;
        }
    }
    if(MyNodeId==0)
    {
        for(int instancja=1; instancja<NumberOfNodes(); instancja++)
        {
            PutInt(instancja, maks);
            Send(instancja);
        }
    }
    else
    {
        Receive(0);
        maks=GetInt(0);
    }
    int moje=0; //liczba konfliktow w danej instancji
    vector<int>sumy(maks+1);
    vector<int>zliczone(maks+1);
    for(int i=0; i<wzrost.size(); i++)
    {
        zliczone[wzrost[i]]++;
        for(int j=wzrost[i]-1; j>=1; j--)
        {
            sumy[j]++;
        }
        moje+=sumy[wzrost[i]];
    }
    for(int i=0; i<maks; i++)
    {
        /*for(int inst=MyNodeId()+1; inst<NumberOfNodes(); inst++)
        {
            PutInt(inst, sumy[i]);
            Send(inst);
        }*/
        if(MyNodeId()>0)
        {
            Receive(MyNodeId()-1);
            int odbior=GetInt(MyNodeId()-1);
            sumy[i]+=odbior;
            moje+=zliczone[i]*odbior;
            if(MyNodeId()!=99) PutInt(MyNodeId()+1, sumy[i]);
        }
        else
        {
            PutInt(MyNodeId()+1, sumy[i]);
        }
    }
    /*for(int i=0; i<ilemam; i++)
    {
        for(int inst=0; inst<MyNodeId(); inst++)
        {
            for(int i=0; i<maks; i++)
            {
                Receive(inst);
                moje+=zliczone[i]*GetInt(inst);
            }

        }
    }*/
    if(MyNodeId>0)
    {
        PutInt(0, moje);
        Send(0);
    }
    if(MyNodeId()==0)
    {
        for(int inst=1; inst<NumberOfNodes(); inst++)
        {
            Receive(inst);
            moje+=GetInt(inst);
        }
        cout << moje;
    }
    return 0;
}