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

#include <algorithm>
#include <cstdlib>

using namespace std;

const int God = 0;

typedef long long int ll;

int iluNas, ja, n, poIle, a, b;

ll wyn[1005];
ll pref[1005];
ll suf[1005];
ll sum[1005];

void answer()
{
	ll wynik = 0LL;
	for(int i = 0; i < iluNas; i++)
	{
		int kto = Receive(-1);
		wyn[kto] = GetLL(kto);
		pref[kto] = GetLL(kto);
		suf[kto] = GetLL(kto);
		sum[kto] = GetLL(kto);
		wynik = max(wynik, wyn[kto]);
	}
	for(int i = 1; i < iluNas; i++)
		sum[i] += sum[i - 1];
	for(int i = 0; i < iluNas; i++)
	{
		for(int j = i + 1; j < iluNas; j++)
		{
			ll suma = sum[j - 1] - sum[i];
			suma += suf[i];
			suma += pref[j];
			wynik = max(wynik, suma);
		}
	}
	printf("%lld\n", wynik);
}

int main()
{
	iluNas = NumberOfNodes();
	ja = MyNodeId();
	n = Size();
	poIle = (n + iluNas - 1) / iluNas;
	a = ja * poIle + 1;
	b = min((ja + 1) * poIle, n);

	ll awyn = 0;
	ll apref = 0;
	ll asuf = 0;
	ll amn = 0;
	ll asum = 0;

	for(int i = a; i <= b; i++)
	{
		int x = ElementAt(i);
		asum += x;
		awyn = max(awyn, asum - amn);
		apref = max(apref, asum);
		amn = min(amn, asum);
	}
	asuf = max(0LL, asum - amn);

	PutLL(God, awyn);
	PutLL(God, apref);
	PutLL(God, asuf);
	PutLL(God, asum);
	Send(God);

	if(ja == God)
		answer();
  return 0;
}