A10350 | Fibonacci-ish II
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Yash is finally tired of computing the length of the longest Fibonacci-ish sequence. He now plays around with more complex things such as Fibonacci-ish potentials.
Fibonacci-ish potential of an array $a_{i}$ is computed as follows:
1. Remove all elements $j$ if there exists $i<j$ such that $a_{i}=a_{j}$ .
2. Sort the remaining elements in ascending order, i.e. $a_{1}<a_{2}<...<a_{n}$ .
3. Compute the potential as $P(a)=a_{1}·F_{1}+a_{2}·F_{2}+...+a_{n}·F_{n}$ , where $F_{i}$ is the $i$ -th Fibonacci number (see notes for clarification).
You are given an array $a_{i}$ of length $n$ and $q$ ranges from $l_{j}$ to $r_{j}$ . For each range $j$ you have to compute the Fibonacci-ish potential of the array $b_{i}$ , composed using all elements of $a_{i}$ from $l_{j}$ to $r_{j}$ inclusive. Find these potentials modulo $m$ .
Fibonacci-ish potential of an array $a_{i}$ is computed as follows:
1. Remove all elements $j$ if there exists $i<j$ such that $a_{i}=a_{j}$ .
2. Sort the remaining elements in ascending order, i.e. $a_{1}<a_{2}<...<a_{n}$ .
3. Compute the potential as $P(a)=a_{1}·F_{1}+a_{2}·F_{2}+...+a_{n}·F_{n}$ , where $F_{i}$ is the $i$ -th Fibonacci number (see notes for clarification).
You are given an array $a_{i}$ of length $n$ and $q$ ranges from $l_{j}$ to $r_{j}$ . For each range $j$ you have to compute the Fibonacci-ish potential of the array $b_{i}$ , composed using all elements of $a_{i}$ from $l_{j}$ to $r_{j}$ inclusive. Find these potentials modulo $m$ .
输入格式
The first line of the input contains integers of $n$ and $m$ ( $1<=n,m<=30000$ ) — the length of the initial array and the modulo, respectively.
The next line contains $n$ integers $a_{i}$ ( $0<=a_{i}<=10^{9}$ ) — elements of the array.
Then follow the number of ranges $q$ ( $1<=q<=30000$ ).
Last $q$ lines contain pairs of indices $l_{i}$ and $r_{i}$ ( $1<=l_{i}<=r_{i}<=n$ ) — ranges to compute Fibonacci-ish potentials.
The next line contains $n$ integers $a_{i}$ ( $0<=a_{i}<=10^{9}$ ) — elements of the array.
Then follow the number of ranges $q$ ( $1<=q<=30000$ ).
Last $q$ lines contain pairs of indices $l_{i}$ and $r_{i}$ ( $1<=l_{i}<=r_{i}<=n$ ) — ranges to compute Fibonacci-ish potentials.
输出格式
Print $q$ lines, $i$ -th of them must contain the Fibonacci-ish potential of the $i$ -th range modulo $m$ .
输入输出样例
输入 #1
5 10 2 1 2 1 2 2 2 4 4 5
输出 #1
3 3
For the purpose of this problem define Fibonacci numbers as follows:
1. $F_{1}=F_{2}=1$ .
2. $F_{n}=F_{n-1}+F_{n-2}$ for each $n>2$ .
In the first query, the subarray \[1,2,1\] can be formed using the minimal set {1,2}. Thus, the potential of this subarray is 1\*1+2\*1=3.
1. $F_{1}=F_{2}=1$ .
2. $F_{n}=F_{n-1}+F_{n-2}$ for each $n>2$ .
In the first query, the subarray \[1,2,1\] can be formed using the minimal set {1,2}. Thus, the potential of this subarray is 1\*1+2\*1=3.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted