A12950 | Product Tuples
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
While roaming the mystic areas of Stonefalls, in order to drop legendary loot, an adventurer was given a quest as follows. He was given an array $A = {a_1,a_2,...,a_N }$ of length $N$ , and a number $K$ .
Define array $B$ as $B(q, A) = $ { $q-a_1, q-a_2, ..., q-a_N$ }. Define function $F$ as $F(B,K)$ being sum of products of all $K$ -tuples of elements in array $B$ . For example, if the array $B$ is $[2,3,4,5]$ , and with $K=3$ , sum of products of all 3-tuples is $$$$F(B, 3) = 2*3*4+2*3*5+3*4*5+2*4*5 $$ </p><p>He was then given a number Q, number of queries of two types: </p><ul> <li> Type 1: Given $q$ , $i$ , and $d$ calculate $F(B(q, A), K)$ where we make change to initial array as $A\[i\] = d$ . </li><li> Type 2: Given $q$ , $L$ , $R$ , and $d$ calculate $F(B(q, A), K)$ where we make change to initial array as $A\[i\] = A\[i\] + d$ for all $i$ in range $\[L, R\]$$$ inclusive.
All changes are temporarily made to initial array, and don't propagate to following queries. Help the adventurer calculate the answer to a quest, and finally get that loot!
Define array $B$ as $B(q, A) = $ { $q-a_1, q-a_2, ..., q-a_N$ }. Define function $F$ as $F(B,K)$ being sum of products of all $K$ -tuples of elements in array $B$ . For example, if the array $B$ is $[2,3,4,5]$ , and with $K=3$ , sum of products of all 3-tuples is $$$$F(B, 3) = 2*3*4+2*3*5+3*4*5+2*4*5 $$ </p><p>He was then given a number Q, number of queries of two types: </p><ul> <li> Type 1: Given $q$ , $i$ , and $d$ calculate $F(B(q, A), K)$ where we make change to initial array as $A\[i\] = d$ . </li><li> Type 2: Given $q$ , $L$ , $R$ , and $d$ calculate $F(B(q, A), K)$ where we make change to initial array as $A\[i\] = A\[i\] + d$ for all $i$ in range $\[L, R\]$$$ inclusive.
All changes are temporarily made to initial array, and don't propagate to following queries. Help the adventurer calculate the answer to a quest, and finally get that loot!
输入格式
In the first two lines, numbers $N$ ( $1 \leq N \leq 2*10^4$ ) and $K$ ( $1 \leq K \leq N$ ), the length of initial array $A$ , and tuple size, followed by $a_1,a_2,a_3,…,a_N$ ( $0 \leq a_i \leq 10^9$ ) , elements of array $A$ , in the next line. Then follows number $Q$ ( $Q \leq 10$ ), number of queries. In the next $Q$ lines come queries of the form:
- 1 q i d, for type 1,
- 2 q L R d, for type 2,
as explained above ( $0 \leq q, d \leq 10^9, 1 \leq i,L,R \leq N$ )
- 1 q i d, for type 1,
- 2 q L R d, for type 2,
as explained above ( $0 \leq q, d \leq 10^9, 1 \leq i,L,R \leq N$ )
输出格式
Print $Q$ lines, the answers to queries, modulo $998244353$ .
输入输出样例
输入 #1
5 2 1 2 3 4 5 3 1 6 1 1 1 6 5 2 2 6 2 3 1
输出 #1
85 127 63
In the first query array A = \[1, 2, 3, 4, 5\], B = \[5, 4, 3, 2, 1\], sum of products of 2-tuples = 85.
In second query array A = \[1, 2, 3, 4, 2\], B = \[5, 4, 3, 2, 4\], sum of products of 2-tuples = 127
In third query array A = \[1, 3, 4, 4, 5\], B = \[5, 3, 2, 2, 1\], sum of products of 2-tuples = 63
In second query array A = \[1, 2, 3, 4, 2\], B = \[5, 4, 3, 2, 4\], sum of products of 2-tuples = 127
In third query array A = \[1, 3, 4, 4, 5\], B = \[5, 3, 2, 2, 1\], sum of products of 2-tuples = 63
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted