generated at
下への伝搬の影響範囲
下への伝搬の影響範囲
python
>>> table = [0] * SEGTREE_SIZE >>> down_propagate(table, up(5), lambda x,y: "+", "*") >>> debugprint(table) | * | | * | + | | + | * | 0 | 0 | | 0 | 0 | * | + | 0 | 0 | 0 | 0 | |0|0|0|0|+|+|0|0|0|0|0|0|0|0|0|0|