A14741 | Alphabetic Tree
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given $m$ strings and a tree on $n$ nodes. Each edge has some letter written on it.
You have to answer $q$ queries. Each query is described by $4$ integers $u$ , $v$ , $l$ and $r$ . The answer to the query is the total number of occurrences of $str(u,v)$ in strings with indices from $l$ to $r$ . $str(u,v)$ is defined as the string that is made by concatenating letters written on the edges on the shortest path from $u$ to $v$ (in order that they are traversed).
You have to answer $q$ queries. Each query is described by $4$ integers $u$ , $v$ , $l$ and $r$ . The answer to the query is the total number of occurrences of $str(u,v)$ in strings with indices from $l$ to $r$ . $str(u,v)$ is defined as the string that is made by concatenating letters written on the edges on the shortest path from $u$ to $v$ (in order that they are traversed).
输入格式
The first line of the input contains three integers $n$ , $m$ and $q$ ( $2 \le n \le 10^5$ , $1 \le m,q \le 10^5$ ).
The $i$ -th of the following $n-1$ lines contains two integers $u_i, v_i$ and a lowercase Latin letter $c_i$ ( $1 \le u_i, v_i \le n$ , $u_i \neq v_i$ ), denoting the edge between nodes $u_i, v_i$ with a character $c_i$ on it.
It's guaranteed that these edges form a tree.
The following $m$ lines contain the strings consisting of lowercase Latin letters. The total length of those strings does not exceed $10^5$ .
Then $q$ lines follow, each containing four integers $u$ , $v$ , $l$ and $r$ ( $1 \le u,v \le n$ , $u \neq v$ , $1 \le l \le r \le m$ ), denoting the queries.
The $i$ -th of the following $n-1$ lines contains two integers $u_i, v_i$ and a lowercase Latin letter $c_i$ ( $1 \le u_i, v_i \le n$ , $u_i \neq v_i$ ), denoting the edge between nodes $u_i, v_i$ with a character $c_i$ on it.
It's guaranteed that these edges form a tree.
The following $m$ lines contain the strings consisting of lowercase Latin letters. The total length of those strings does not exceed $10^5$ .
Then $q$ lines follow, each containing four integers $u$ , $v$ , $l$ and $r$ ( $1 \le u,v \le n$ , $u \neq v$ , $1 \le l \le r \le m$ ), denoting the queries.
输出格式
For each query print a single integer — the answer to the query.
输入输出样例
输入 #1
2 5 3 1 2 a aab abab aaa b a 2 1 1 5 1 2 1 3 2 1 3 5
输出 #1
8 7 4
输入 #2
9 5 6 1 2 a 2 7 c 1 3 b 3 4 b 4 6 b 3 5 a 5 8 b 5 9 c ababa cabbb bac bbbac abacaba 2 7 1 4 2 5 1 5 6 3 4 4 6 9 4 5 5 7 3 5 5 3 1 5
输出 #2
3 4 2 1 1 10
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted