From f51f5461d0883b46e179affdd0d8a01191e91328 Mon Sep 17 00:00:00 2001 From: annamackevich Date: Sun, 26 Jan 2025 21:59:39 +0300 Subject: [PATCH] correct vector b declaration --- content/russian/cs/decomposition/mo.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/russian/cs/decomposition/mo.md b/content/russian/cs/decomposition/mo.md index b3b5d4ce..121745d1 100644 --- a/content/russian/cs/decomposition/mo.md +++ b/content/russian/cs/decomposition/mo.md @@ -25,7 +25,7 @@ published: true struct query { int l, r, idx; }; int a[maxn], ans[maxq]; // исходный массив и массив ответов на запросы -vector b[c]; +vector> b[c]; // где-то в main: