I tried and failed to do something very similar to this a few days ago. The problem lies in the fact that you can't get a sum of a collection, only the sum of an aggregation.
See:
https://groups.google.com/d/topic/neo4j/_MqwGp1a1Oo/discussion
I hope they'll add some functionality for this in Cypher, but I couldn't get it to work, even with the help of the expert--Michael Hunger.
UPDATE I actually poked at the Cypher code today to make an expression that does exactly this. I'm not sure if it will be accepted by 1.9, but maybe some form of it will get into the community edition soon.
UPDATE 2 They've merged in my pull request for reduce into 1.9-SNAPSHOT, I'll update the syntax below.
It does basically exactly what you're asking for--a slightly stale version of my data is here:
http://console.neo4j.org/r/2rvznu
And here's the Cypher (NOTE, currently requires 1.9-SNAPSHOT):
START n=node(18)
MATCH p=n-[r*]->m
WHERE not(m-->())
WITH extract(x in r: x.score) as scores, length(p) as len
RETURN scores, reduce(res=0, x in scores: res + x) as totalscore, len
ORDER BY totalscore desc;
gives:
+------------------------------------------+
| scores | totalscore | len |
+------------------------------------------+
| [0.9,0.9,3.7] | 5.5 | 3 |
| [0.8,0.79] | 1.59 | 2 |
| [0.4,0.75] | 1.15 | 2 |
| [0.4,0.45] | 0.8500000000000001 | 2 |
+------------------------------------------+