Пример #1
0
        PutLL(nodeId, arg)


def GetC(nodeId, howMany=1):
    return tuple(GetChar(nodeId) for _ in xrange(howMany))


def GetI(nodeId, howMany=1):
    return tuple(GetInt(nodeId) for _ in xrange(howMany))


def GetL(nodeId, howMany=1):
    return tuple(GetLL(nodeId) for _ in xrange(howMany))


NumNodes = message.NumberOfNodes()
MyNodeId = message.MyNodeId()
N = almost_sorted.NumberOfFiles()
MOD = 2**20

start = N * MyNodeId / NumNodes
end = N * (MyNodeId + 1) / NumNodes

minStart = max(start - almost_sorted.MaxDistance(), 0)
maxEnd = min(end + almost_sorted.MaxDistance(), N)

files = [almost_sorted.Identifier(idx) for idx in xrange(minStart, maxEnd)]
files.sort()
s = 0
for idx, file in enumerate(files):
    realIdx = minStart + idx
Пример #2
0
#!/usr/bin/python
"""Python solution to the "Sum all integers on the input" problem.

This is a sample solution to the "Sum all integers" problem. Each node sums the
elements that belong to it (that is, the ones with position equal to MyNodeId()
modulo NumberOfNodes()).

To showcase the communication a bit better, instead of sending all the results
to a "master" node, each node sends its result to the next one, accumulating the
result from the previous node. The last node prints the final result.
"""

import message
import sum_all

accumulated_sum = 0
my_id = message.MyNodeId()
pos = my_id
while pos < sum_all.GetN():
    accumulated_sum += sum_all.GetNumber(pos)
    pos += message.NumberOfNodes()
if my_id > 0:
    message.Receive(my_id - 1)
    accumulated_sum += message.GetLL(my_id - 1)
if my_id < message.NumberOfNodes() - 1:
    message.PutLL(my_id + 1, accumulated_sum)
    message.Send(my_id + 1)
else:
    print accumulated_sum