結果
| 問題 |
No.399 動的な領主
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-09-11 11:04:48 |
| 言語 | Nim (2.2.0) |
| 結果 |
CE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 7,514 bytes |
| コンパイル時間 | 1,554 ms |
| コンパイル使用メモリ | 73,088 KB |
| 最終ジャッジ日時 | 2024-12-25 14:48:18 |
| 合計ジャッジ時間 | 2,358 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
/home/judge/data/code/Main.nim(224, 32) Error: type mismatch: got 'seq[int]' for '
type
OutType`gensym17 = typeof(
block:
var it {.inject.}: typeof(items(split(input(),
{' ', '\t', '\v', '\r', '\n', '\f'}, -1)), typeOfIter)
parseInt(it) - 1, typeOfProc)
block:
let :tmp_553649635 = split(input(), {' ', '\t', '\v', '\r', '\n', '\f'}, -1)
template s2_553649640(): untyped =
:tmp_553649635
var i`gensym17 = 0
var result`gensym17 = newSeq(len(:tmp_553649635))
for it in items(:tmp_553649635):
result`gensym17[i`gensym17] = parseInt(it) - 1
i`gensym17 += 1
result`gensym17' but expected 'tuple'
ソースコード
import algorithm, deques, heapqueue, math, sets, sequtils, strutils, sugar, tables
proc input*(): string =
return stdin.readLine
proc chmax*[T: SomeNumber](num0: var T, num1: T) =
num0 = max(num0, num1)
proc chmin*[T: SomeNumber](num0: var T, num1: T) =
num0 = min(num0, num1)
type
HeavyLightDecomposition* = ref object
graph: seq[seq[Natural]]
path_root, path_parent, left, right: seq[Natural]
proc initHeavyLightdecomposition*(size: Positive): HeavyLightDecomposition =
var
graph = newSeqWith(size, newSeq[Natural]())
empty_seq = newSeq[Natural]()
return HeavyLightDecomposition(graph: graph, path_root: empty_seq, path_parent: empty_seq, left: empty_seq, right: empty_seq)
proc add_edge*(self: var HeavyLightDecomposition, a, b: Natural) =
self.graph[a].add(b)
self.graph[b].add(a)
proc build*(self: var HeavyLightDecomposition, root: Natural) =
var
stack = @[(root, root)]
q = newSeq[Natural]()
v, p: Natural
while stack.len != 0:
(v, p) = stack.pop()
q.add(v)
for i, to in self.graph[v]:
if to == p:
self.graph[v][i] = self.graph[v][^1]
let _ = self.graph[v].pop()
break
for to in self.graph[v]:
stack.add((to, v))
let n = self.graph.len
var size = newSeqWith(n, 1)
for v in reversed(q):
for i, to in self.graph[v]:
size[v] += size[to]
if size[self.graph[v][0]] < size[to]:
(self.graph[v][0], self.graph[v][i]) = (self.graph[v][i], self.graph[v][0])
var
path_root = newSeqWith(n, root)
path_parent = newSeqWith(n, root)
left = newSeq[Natural](n)
right = newSeq[Natural](n)
k = 0
stack1 = @[(root, 0)]
op: int
while stack1.len != 0:
(v, op) = stack1.pop()
if op == 1:
right[v] = k
continue
left[v] = k
inc k
stack1.add((v, 1))
if 1 < self.graph[v].len:
for i, to in self.graph[v][1..^1]:
path_root[to] = to
path_parent[to] = v
stack1.add((to, 0))
if self.graph[v].len != 0:
let to = self.graph[v][0]
path_root[to] = path_root[v]
path_parent[to] = path_parent[v]
stack1.add((to, 0))
self.path_root = path_root
self.path_parent = path_parent
self.left = left
self.right = right
proc sub_tree*(self: var HeavyLightDecomposition, v: Natural): (Natural, Natural) =
return (self.left[v], self.right[v])
proc path*(self: var HeavyLightDecomposition, v, u: Natural): seq[(Natural, int)] =
var
x = v
y = u
res = newSeq[(Natural, int)]()
while self.path_root[x] != self.path_root[y]:
if self.left[x] < self.left[y]:
let p = self.path_root[y]
res.add((self.left[p], self.left[y] + 1))
y = self.path_parent[y]
else:
let p = self.path_root[x]
res.add((self.left[p], self.left[x] + 1))
x = self.path_parent[x]
res.add((min(self.left[x], self.left[y]), max(self.left[x], self.left[y]) + 1))
return res
proc bit_length(n: Natural): Natural =
const BIT_SIZE = 24
if n == 0:
return 0
let s = toBin(n, BIT_SIZE)
return BIT_SIZE - s.find('1')
type
LazySegmentTree*[T, K] = ref object
LV: Natural
N0: Positive
ide_ele: T
lazy_ide_ele: K
data: seq[T]
lazy_data: seq[K]
segfunc: proc (a, b: T): T
proc initLazySegmentTree*[T, K](size: Positive, ide_ele: T, lazy_ide_ele: K, f: proc (a, b: T): T): LazySegmentTree[T, K] =
var
LV = bit_length(size - 1)
N0 = 1 shl LV
data = newSeqWith(2*N0, ide_ele)
lazy_data = newSeqWith(2*N0, lazy_ide_ele)
return LazySegmentTree[T, K](LV: LV, N0: N0, ide_ele: ide_ele, lazy_ide_ele: lazy_ide_ele, data: data, lazy_data: lazy_data, segfunc: f)
proc toLazySegmentTree*[T, K](init_value: openArray[T], ide_ele: T, lazy_ide_ele: K, f: proc (a, b: T): T): LazySegmentTree[T, K] =
var
LV = bit_length(init_value.len - 1)
N0 = 1 shl LV
data = newSeqWith(2*N0, ide_ele)
lazy_data = newSeqWith(2*N0, lazy_ide_ele)
for i, x in init_value:
data[i + N0 - 1] = x
for i in countdown(N0 - 2, 0):
data[i] = f(data[2*i + 1], data[2*i + 2])
return LazySegmentTree[T, K](LV: LV, N0: N0, ide_ele: ide_ele, lazy_ide_ele: lazy_ide_ele, data: data, lazy_data: lazy_data, segfunc: f)
iterator gindex*[T, K](self: var LazySegmentTree[T, K], left, right: Natural): Natural =
var
L = (left + self.N0) shr 1
R = (right + self.N0) shr 1
lc = if (left and 1) == 1: 0 else: bit_length(L and -L)
rc = if (right and 1) == 1: 0 else: bit_length(R and -R)
for i in 0..<self.LV:
if rc <= i:
yield R
if L < R and lc <= i:
yield L
L = L shr 1
R = R shr 1
proc propagates*[T, K](self: var LazySegmentTree[T, K], ids: seq[Natural]) =
var
idx: Natural
v: T
for id in reversed(ids):
idx = id - 1
v = self.lazy_data[idx]
if v == self.lazy_ide_ele:
continue
self.data[2*idx + 1] += v shr 1
self.data[2*idx + 2] += v shr 1
self.lazy_data[2*idx + 1] += v shr 1
self.lazy_data[2*idx + 2] += v shr 1
self.lazy_data[idx] = self.lazy_ide_ele
proc update*[T, K](self: var LazySegmentTree[T, K], left, right: Natural, x: T) =
let ids = toSeq(self.gindex(left, right))
# self.propagates(ids)
var
L = left + self.N0
R = right + self.N0
x = x
while L < R:
if (L and 1) == 1:
self.lazy_data[L - 1] += x
self.data[L - 1] += x
inc L
if (R and 1) == 1:
dec R
self.lazy_data[R - 1] += x
self.data[R - 1] += x
L = L shr 1
R = R shr 1
x = x shl 1
var idx: Natural
for id in ids:
idx = id - 1
self.data[idx] = self.segfunc(self.data[2*idx + 1], self.data[2*idx + 2]) + self.lazy_data[idx]
proc query*[T, K](self: var LazySegmentTree[T, K], left, right: Natural): T =
self.propagates(toSeq(self.gindex(left, right)))
var
L = left + self.N0
R = right + self.N0
res = self.ide_ele
while L < R:
if (L and 1) == 1:
res = self.segfunc(res, self.data[L - 1])
inc L
if (R and 1) == 1:
dec R
res = self.segfunc(res, self.data[R - 1])
L = L shr 1
R = R shr 1
return res
var
hld: HeavyLightDecomposition
lazy_seg_tree: LazySegmentTree[int, int]
proc solve() =
let N = input().parseInt
hld = initHeavyLightdecomposition(N)
var u, v: int
for _ in 0..<N - 1:
(u, v) = input().split.mapIt(it.parseInt - 1)
hld.add_edge(u, v)
hld.build(0)
lazy_seg_tree = initLazySegmentTree(N, 0, 0, (a, b) => a + b)
let Q = input().parseInt
var a, b, ans: int
for _ in 0..<Q:
(a, b) = input().split.mapIt(it.parseInt - 1)
for (left, right) in hld.path(a, b):
ans += lazy_seg_tree.query(left, right) + right - left
lazy_seg_tree.update(left, right, 1)
echo ans
when is_main_module:
solve()