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

#include <cstdio>
#include <vector>
#include <queue>
#include <stack>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <set>
#define MAXN
#define INF
#define PB push_back
#define MP make_pair
#define ST first
#define ND second

#define REP(i,n) for(int i=0;i<(n);i++)
#define FOR(a,b,c) for(int a=b;a<=(c);a++)
#define FORD(a,b,c) for (int a=b;a>=(c);a--)
#define VAR(v,n) __typeof(n) v=(n)
#define ALL(c) c.begin(),c.end()
#define FOREACH(i,c) for(VAR(i,(c).begin());i!=(c).end();i++)

using namespace std;

typedef long long LL; 

LL maks_pref_lewy, maks_pref_prawy, suma, maks_przedzial, pref;

void oblicz_przedzial(int &pocz, int &kon) {
	int reszta = Size()%NumberOfNodes();
	int dlugosc = Size()/NumberOfNodes();
	pocz = MyNodeId()*dlugosc + min(MyNodeId(),reszta) + 1;
	kon = pocz + dlugosc + (MyNodeId() < reszta ? 0 : -1);
}

int main() {
	int pocz,kon;
	oblicz_przedzial(pocz,kon);
	
	LL pref = 0;
	LL przedzial = 0;
	FOR(i,pocz,kon) {
		LL x = ElementAt(i); 
		pref += x;
		przedzial += x;
		przedzial = max(przedzial,0LL);
		maks_przedzial = max(maks_przedzial,przedzial);
		maks_pref_lewy = max(pref,maks_pref_lewy);
	}
	
	suma = pref;
	pref = 0;
	FORD(i,kon,pocz) {
		LL x = ElementAt(i); 
		pref += x;
		maks_pref_prawy = max(pref,maks_pref_prawy);
	}
	
	
	if (MyNodeId()) {
		PutLL(0,maks_pref_lewy);
		PutLL(0,maks_pref_prawy);
		PutLL(0,suma);
		PutLL(0,maks_przedzial);
		Send(0);
	}
	else {
		LL akt_maks_pref_prawy = maks_pref_prawy;
		LL akt_maks_przedzial = maks_przedzial;
		//LL akt_maks_pref_lewy = maks_pref_lewy;
		
		FOR(i,1,NumberOfNodes()-1) {
			Receive(i);
			maks_pref_lewy = GetLL(i);
			maks_pref_prawy = GetLL(i);
			suma = GetLL(i);
			maks_przedzial = GetLL(i);
			
			akt_maks_przedzial = max(akt_maks_przedzial, max(maks_przedzial, akt_maks_pref_prawy + maks_pref_lewy));
			akt_maks_pref_prawy = max(akt_maks_pref_prawy + suma, maks_pref_prawy);
		}
		printf("%lld\n",akt_maks_przedzial);
	}
	return 0;
}