A11555 | Power Tower
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Priests of the Quetzalcoatl cult want to build a tower to represent a power of their god. Tower is usually made of power-charged rocks. It is built with the help of rare magic by levitating the current top of tower and adding rocks at its bottom. If top, which is built from $k-1$ rocks, possesses power $p$ and we want to add the rock charged with power $w_{k}$ then value of power of a new tower will be ${w_{k}}^{p}$ .
Rocks are added from the last to the first. That is for sequence $w_{1},...,w_{m}$ value of power will be
After tower is built, its power may be extremely large. But still priests want to get some information about it, namely they want to know a number called cumulative power which is the true value of power taken modulo $m$ . Priests have $n$ rocks numbered from $1$ to $n$ . They ask you to calculate which value of cumulative power will the tower possess if they will build it from rocks numbered $l,l+1,...,r$ .
Rocks are added from the last to the first. That is for sequence $w_{1},...,w_{m}$ value of power will be
After tower is built, its power may be extremely large. But still priests want to get some information about it, namely they want to know a number called cumulative power which is the true value of power taken modulo $m$ . Priests have $n$ rocks numbered from $1$ to $n$ . They ask you to calculate which value of cumulative power will the tower possess if they will build it from rocks numbered $l,l+1,...,r$ .
输入格式
First line of input contains two integers $n$ ( $1<=n<=10^{5}$ ) and $m$ ( $1<=m<=10^{9}$ ).
Second line of input contains $n$ integers $w_{k}$ ( $1<=w_{k}<=10^{9}$ ) which is the power of rocks that priests have.
Third line of input contains single integer $q$ ( $1<=q<=10^{5}$ ) which is amount of queries from priests to you.
$k^{th}$ of next $q$ lines contains two integers $l_{k}$ and $r_{k}$ ( $1<=l_{k}<=r_{k}<=n$ ).
Second line of input contains $n$ integers $w_{k}$ ( $1<=w_{k}<=10^{9}$ ) which is the power of rocks that priests have.
Third line of input contains single integer $q$ ( $1<=q<=10^{5}$ ) which is amount of queries from priests to you.
$k^{th}$ of next $q$ lines contains two integers $l_{k}$ and $r_{k}$ ( $1<=l_{k}<=r_{k}<=n$ ).
输出格式
Output $q$ integers. $k$ -th of them must be the amount of cumulative power the tower will have if is built from rocks $l_{k},l_{k}+1,...,r_{k}$ .
输入输出样例
输入 #1
6 1000000000 1 2 2 3 3 3 8 1 1 1 6 2 2 2 3 2 4 4 4 4 5 4 6
输出 #1
1 1 2 4 256 3 27 597484987
$3^{27}=7625597484987$
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted