A12550 | Same Sum Blocks (Hard)
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
This problem is given in two editions, which differ exclusively in the constraints on the number $n$ .
You are given an array of integers $a[1], a[2], \dots, a[n].$ A block is a sequence of contiguous (consecutive) elements $a[l], a[l+1], \dots, a[r]$ ( $1 \le l \le r \le n$ ). Thus, a block is defined by a pair of indices $(l, r)$ .
Find a set of blocks $(l_1, r_1), (l_2, r_2), \dots, (l_k, r_k)$ such that:
- They do not intersect (i.e. they are disjoint). Formally, for each pair of blocks $(l_i, r_i)$ and $(l_j, r_j$ ) where $i \neq j$ either $r_i < l_j$ or $r_j < l_i$ .
- For each block the sum of its elements is the same. Formally, $$$$a[l_1]+a[l_1+1]+\dots+a[r_1]=a[l_2]+a[l_2+1]+\dots+a[r_2]= $$ $$ \dots = $$ $$ a[l_k]+a[l_k+1]+\dots+a[r_k]. $$ </li><li> The number of the blocks in the set is maximum. Formally, there does not exist a set of blocks $(l\_1', r\_1'), (l\_2', r\_2'), \\dots, (l\_{k'}', r\_{k'}')$ satisfying the above two requirements with $k' > k$$$.
The picture corresponds to the first example. Blue boxes illustrate blocks.Write a program to find such a set of blocks.
You are given an array of integers $a[1], a[2], \dots, a[n].$ A block is a sequence of contiguous (consecutive) elements $a[l], a[l+1], \dots, a[r]$ ( $1 \le l \le r \le n$ ). Thus, a block is defined by a pair of indices $(l, r)$ .
Find a set of blocks $(l_1, r_1), (l_2, r_2), \dots, (l_k, r_k)$ such that:
- They do not intersect (i.e. they are disjoint). Formally, for each pair of blocks $(l_i, r_i)$ and $(l_j, r_j$ ) where $i \neq j$ either $r_i < l_j$ or $r_j < l_i$ .
- For each block the sum of its elements is the same. Formally, $$$$a[l_1]+a[l_1+1]+\dots+a[r_1]=a[l_2]+a[l_2+1]+\dots+a[r_2]= $$ $$ \dots = $$ $$ a[l_k]+a[l_k+1]+\dots+a[r_k]. $$ </li><li> The number of the blocks in the set is maximum. Formally, there does not exist a set of blocks $(l\_1', r\_1'), (l\_2', r\_2'), \\dots, (l\_{k'}', r\_{k'}')$ satisfying the above two requirements with $k' > k$$$.
The picture corresponds to the first example. Blue boxes illustrate blocks.Write a program to find such a set of blocks.
输入格式
The first line contains integer $n$ ( $1 \le n \le 1500$ ) — the length of the given array. The second line contains the sequence of elements $a[1], a[2], \dots, a[n]$ ( $-10^5 \le a_i \le 10^5$ ).
输出格式
In the first line print the integer $k$ ( $1 \le k \le n$ ). The following $k$ lines should contain blocks, one per line. In each line print a pair of indices $l_i, r_i$ ( $1 \le l_i \le r_i \le n$ ) — the bounds of the $i$ -th block. You can print blocks in any order. If there are multiple answers, print any of them.
输入输出样例
输入 #1
7 4 1 2 2 1 5 3
输出 #1
3 7 7 2 3 4 5
输入 #2
11 -5 -4 -3 -2 -1 0 1 2 3 4 5
输出 #2
2 3 4 1 1
输入 #3
4 1 1 1 1
输出 #3
4 4 4 1 1 2 2 3 3
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted