分割困難な集計
https://gyazo.com/074de177bd8d8dc1505ae0505e41e18b
ある集合の要素を種類ごとに分割してからそれに対して集計fを行いたいが、分割のコストが高い場合
fが二項演算の繰り返しで実現できるような関数なら
例: sum, min
あらかじめ分割することなく集計ができる
code:python
for x in S:
subgroup
typeof(x)
.append(x)
for t, xs in subgroup:
result
t
= f(xs)
code:python
for x in S:
result
typeof(x)
.update(x)
注意機構
と関連する??