A13960 | Death DBMS
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
For the simplicity, let's say that the "Death Note" is a notebook that kills a person when their name is written in it.
It's easy to kill with it, but it's pretty hard to keep track of people you haven't killed and still plan to. You decided to make a "Death Database Management System" — a computer program that provides the easy access to the database of possible victims. Let me describe its specifications to you.
Let's define a victim entity: a victim has a name (not necessarily unique) that consists only of lowercase Latin letters and an integer suspicion value.
At the start of the program the user enters a list of $n$ victim names into a database, each suspicion value is set to $0$ .
Then the user makes queries of two types:
- $1~i~x$ — set the suspicion value of the $i$ -th victim to $x$ ;
- $2~q$ — given a string $q$ find the maximum suspicion value of a victim whose name is a contiguous substring of $q$ .
Just to remind you, this program doesn't kill people, it only helps to search for the names to write down in an actual notebook. Thus, the list of the victims in the database doesn't change throughout the queries.
What are you waiting for? Write that program now!
It's easy to kill with it, but it's pretty hard to keep track of people you haven't killed and still plan to. You decided to make a "Death Database Management System" — a computer program that provides the easy access to the database of possible victims. Let me describe its specifications to you.
Let's define a victim entity: a victim has a name (not necessarily unique) that consists only of lowercase Latin letters and an integer suspicion value.
At the start of the program the user enters a list of $n$ victim names into a database, each suspicion value is set to $0$ .
Then the user makes queries of two types:
- $1~i~x$ — set the suspicion value of the $i$ -th victim to $x$ ;
- $2~q$ — given a string $q$ find the maximum suspicion value of a victim whose name is a contiguous substring of $q$ .
Just to remind you, this program doesn't kill people, it only helps to search for the names to write down in an actual notebook. Thus, the list of the victims in the database doesn't change throughout the queries.
What are you waiting for? Write that program now!
输入格式
The first line contains two integers $n$ and $m$ ( $1 \le n, m \le 3 \cdot 10^5$ ) — the number of victims and the number of queries, respectively.
Each of the next $n$ lines contains a single string $s_i$ — the name of the $i$ -th victim. Each name consists only of lowercase Latin letters.
Each of the next $m$ lines contains a query of one of two types:
- $1~i~x$ ( $1 \le i \le n$ , $0 \le x \le 10^9$ ) — change the suspicion value of the $i$ -th victim to $x$ ;
- $2~q$ — given a string $q$ consisting only of lowercase Latin letters find the maximum suspicion value of a victim whose name is a contiguous substring of $q$ .
There is at least one query of the second type. The total length of the strings $s_i$ doesn't exceed $3 \cdot 10^5$ . The total length of the strings $q$ doesn't exceed $3 \cdot 10^5$ .
Each of the next $n$ lines contains a single string $s_i$ — the name of the $i$ -th victim. Each name consists only of lowercase Latin letters.
Each of the next $m$ lines contains a query of one of two types:
- $1~i~x$ ( $1 \le i \le n$ , $0 \le x \le 10^9$ ) — change the suspicion value of the $i$ -th victim to $x$ ;
- $2~q$ — given a string $q$ consisting only of lowercase Latin letters find the maximum suspicion value of a victim whose name is a contiguous substring of $q$ .
There is at least one query of the second type. The total length of the strings $s_i$ doesn't exceed $3 \cdot 10^5$ . The total length of the strings $q$ doesn't exceed $3 \cdot 10^5$ .
输出格式
For each query of the second type print an integer value. If there is no victim name that is a contiguous substring of $q$ , then print $-1$ . Otherwise, print the maximum suspicion value of a victim whose name is a contiguous substring of $q$ .
输入输出样例
输入 #1
5 8 kurou takuo takeshi naomi shingo 2 nakiraomi 2 abanaomicaba 1 3 943 2 takuotakeshishingo 1 5 135832 2 shingotakeshi 1 5 0 2 shingotakeshi
输出 #1
-1 0 943 135832 943
输入 #2
6 15 a ab ba b a ba 2 aa 1 4 4 2 bbb 1 2 1 1 2 18 2 b 2 c 1 6 10 2 aba 2 abbbba 1 2 12 2 bbaaab 1 1 11 1 5 5 2 baa
输出 #2
0 4 4 -1 18 18 12 11
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted