Skip to content

Commit

Permalink
segtree2dを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
Toshihiro Shimizu authored and Toshihiro Shimizu committed Nov 17, 2024
1 parent ea8a09a commit 6be533c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/atcoder/extra/structure/segtree_2d.nim
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ when not declared ATCODER_SEGTREE_2D_HPP:
import atcoder/segtree
type SegTree2D*[S; SegTree] = object
N2: int
xs: seq[S]
ys: seq[seq[S]]
xs: seq[int]
ys: seq[seq[int]]
segt: seq[SegTree]

proc initSegTree2D*[S](v: seq[tuple[x, y:int]], op: static[proc(a, b:S):S], e: static[proc():S]):auto =
Expand Down

0 comments on commit 6be533c

Please sign in to comment.