A12933 | Stack Exterminable Arrays
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Let's look at the following process: initially you have an empty stack and an array $s$ of the length $l$ . You are trying to push array elements to the stack in the order $s_1, s_2, s_3, \dots s_{l}$ . Moreover, if the stack is empty or the element at the top of this stack is not equal to the current element, then you just push the current element to the top of the stack. Otherwise, you don't push the current element to the stack and, moreover, pop the top element of the stack.
If after this process the stack remains empty, the array $s$ is considered stack exterminable.
There are samples of stack exterminable arrays:
- $[1, 1]$ ;
- $[2, 1, 1, 2]$ ;
- $[1, 1, 2, 2]$ ;
- $[1, 3, 3, 1, 2, 2]$ ;
- $[3, 1, 3, 3, 1, 3]$ ;
- $[3, 3, 3, 3, 3, 3]$ ;
- $[5, 1, 2, 2, 1, 4, 4, 5]$ ;
Let's consider the changing of stack more details if $s = [5, 1, 2, 2, 1, 4, 4, 5]$ (the top of stack is highlighted).
1. after pushing $s_1 = 5$ the stack turn into $[\textbf{5}]$ ;
2. after pushing $s_2 = 1$ the stack turn into $[5, \textbf{1}]$ ;
3. after pushing $s_3 = 2$ the stack turn into $[5, 1, \textbf{2}]$ ;
4. after pushing $s_4 = 2$ the stack turn into $[5, \textbf{1}]$ ;
5. after pushing $s_5 = 1$ the stack turn into $[\textbf{5}]$ ;
6. after pushing $s_6 = 4$ the stack turn into $[5, \textbf{4}]$ ;
7. after pushing $s_7 = 4$ the stack turn into $[\textbf{5}]$ ;
8. after pushing $s_8 = 5$ the stack is empty.
You are given an array $a_1, a_2, \ldots, a_n$ . You have to calculate the number of its subarrays which are stack exterminable.
Note, that you have to answer $q$ independent queries.
If after this process the stack remains empty, the array $s$ is considered stack exterminable.
There are samples of stack exterminable arrays:
- $[1, 1]$ ;
- $[2, 1, 1, 2]$ ;
- $[1, 1, 2, 2]$ ;
- $[1, 3, 3, 1, 2, 2]$ ;
- $[3, 1, 3, 3, 1, 3]$ ;
- $[3, 3, 3, 3, 3, 3]$ ;
- $[5, 1, 2, 2, 1, 4, 4, 5]$ ;
Let's consider the changing of stack more details if $s = [5, 1, 2, 2, 1, 4, 4, 5]$ (the top of stack is highlighted).
1. after pushing $s_1 = 5$ the stack turn into $[\textbf{5}]$ ;
2. after pushing $s_2 = 1$ the stack turn into $[5, \textbf{1}]$ ;
3. after pushing $s_3 = 2$ the stack turn into $[5, 1, \textbf{2}]$ ;
4. after pushing $s_4 = 2$ the stack turn into $[5, \textbf{1}]$ ;
5. after pushing $s_5 = 1$ the stack turn into $[\textbf{5}]$ ;
6. after pushing $s_6 = 4$ the stack turn into $[5, \textbf{4}]$ ;
7. after pushing $s_7 = 4$ the stack turn into $[\textbf{5}]$ ;
8. after pushing $s_8 = 5$ the stack is empty.
You are given an array $a_1, a_2, \ldots, a_n$ . You have to calculate the number of its subarrays which are stack exterminable.
Note, that you have to answer $q$ independent queries.
输入格式
The first line contains one integer $q$ ( $1 \le q \le 3 \cdot 10^5$ ) — the number of queries.
The first line of each query contains one integer $n$ ( $1 \le n \le 3 \cdot 10^5$ ) — the length of array $a$ .
The second line of each query contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $1 \le a_i \le n$ ) — the elements.
It is guaranteed that the sum of all $n$ over all queries does not exceed $3 \cdot 10^5$ .
The first line of each query contains one integer $n$ ( $1 \le n \le 3 \cdot 10^5$ ) — the length of array $a$ .
The second line of each query contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $1 \le a_i \le n$ ) — the elements.
It is guaranteed that the sum of all $n$ over all queries does not exceed $3 \cdot 10^5$ .
输出格式
For each test case print one integer in single line — the number of stack exterminable subarrays of the array $a$ .
输入输出样例
输入 #1
3 5 2 1 1 2 2 6 1 2 1 1 3 2 9 3 1 2 2 1 6 6 3 3
输出 #1
4 1 8
In the first query there are four stack exterminable subarrays: $a_{1 \ldots 4} = [2, 1, 1, 2], a_{2 \ldots 3} = [1, 1], a_{2 \ldots 5} = [1, 1, 2, 2], a_{4 \ldots 5} = [2, 2]$ .
In the second query, only one subarray is exterminable subarray — $a_{3 \ldots 4}$ .
In the third query, there are eight stack exterminable subarrays: $a_{1 \ldots 8}, a_{2 \ldots 5}, a_{2 \ldots 7}, a_{2 \ldots 9}, a_{3 \ldots 4}, a_{6 \ldots 7}, a_{6 \ldots 9}, a_{8 \ldots 9}$ .
In the second query, only one subarray is exterminable subarray — $a_{3 \ldots 4}$ .
In the third query, there are eight stack exterminable subarrays: $a_{1 \ldots 8}, a_{2 \ldots 5}, a_{2 \ldots 7}, a_{2 \ldots 9}, a_{3 \ldots 4}, a_{6 \ldots 7}, a_{6 \ldots 9}, a_{8 \ldots 9}$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted