1756. Making Colors

When Yunyan first arrived the Blue Planet through the Abyss portal, everything is a little blueish. The blue makes people blue. So Yunyan wanna make the planet more colorful. Also, the more colorful, the more powerful magic power would spring up in the Blue Planet. Luckily, he owns an Abyss machine which can make colors. So he'd like to use it to paint the planet.

There're three dimensions of an color, which are R,G,BR, G, B . They are real numbers and at first they are all 11 . You can use 33 basic transformations below:

  1. Give 13G\dfrac13G and 23B\dfrac23B to RR
  2. Give 13B\dfrac13B and 23R\dfrac23R to GG
  3. Give 13R\dfrac13R and 23G\dfrac23G to BB

For example, if origin (R,G,B)(R,G,B) is (R0,G0,B0)(R_0,G_0,B_0) , then after transformation 11 it becomes (R0+13G0+23B0,23G0,13B0)(R_0+\dfrac13G_0+\dfrac23B_0,\dfrac23G_0,\dfrac13B_0) .

Now there's a transformation sequence ss of length nn . The i-th element sis_i denotes one kind of the three transformations.

There're mm queries. For each query. you need to perform some serial transformations in order sl,sl+1,,srs_l, s_{l+1},\cdots, s_r from origin (R,G,B)=(1,1,1)(R,G,B)=(1,1,1) and figure out the final (R,G,B)(R,G,B) .

Suppose the answer value is an fraction xy\dfrac xy , you should output xymod(109+7)\dfrac xy\bmod (10^9+7) for every value.

输入

Input the first line with two integers n,m(1n,m105)n,m(1\le n,m\le10^5) .

Input the second line with nn integers, the i-th integer is si(1si3)s_i(1\le s_i\le 3) .

Then input mm lines, each line with two integers l,r(1lrn)l,r(1\le l\le r\le n) , denoting an query.

输出

Output mm lines, each line with three integers, denoting the final (R,G,B)mod(109+7)(R,G,B)\bmod(10^9+7) .

样例

标准输入 复制文本
5 6
1 2 3 1 1
1 1
2 2
3 3
1 2
3 4
1 5
标准输出 复制文本
2 666666672 333333336
333333336 2 666666672
666666672 333333336 2
666666672 111111114 222222224
111111114 222222224 666666672
814814823 794238689 390946505

提示

For the first query, (2,23,13)mod(109+7)=(2,666666672,333333336)(2,\dfrac23,\dfrac13)\bmod(10^9+7)=(2,666666672,333333336) .

For the fourth query, (2×13,23+23×2+13×13,13×23)=(23,199,29)(2\times\dfrac13,\dfrac23+\dfrac23\times 2+\dfrac13\times\dfrac13,\dfrac13\times\dfrac23)=(\dfrac23,\dfrac{19}9,\dfrac29) , and (23,199,29)mod(109+7)=(666666672,111111114,222222224)(\dfrac23,\dfrac{19}9,\dfrac29)\bmod(10^9+7)=(666666672,111111114,222222224) .

You may use a fast way to input/output, such as scanf in C/C++.

来源

2022 软件学院 ACM 集训队筛选赛 (热身赛)

登录以提交代码。
单点时限 3 秒
内存限制 512 MB
提交 23
通过 13