A13575 | Omkar and Infinity Clock
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Being stuck at home, Ray became extremely bored. To pass time, he asks Lord Omkar to use his time bending power: Infinity Clock! However, Lord Omkar will only listen to mortals who can solve the following problem:
You are given an array $a$ of $n$ integers. You are also given an integer $k$ . Lord Omkar wants you to do $k$ operations with this array.
Define one operation as the following:
1. Set $d$ to be the maximum value of your array.
2. For every $i$ from $1$ to $n$ , replace $a_{i}$ with $d-a_{i}$ .
The goal is to predict the contents in the array after $k$ operations. Please help Ray determine what the final sequence will look like!
You are given an array $a$ of $n$ integers. You are also given an integer $k$ . Lord Omkar wants you to do $k$ operations with this array.
Define one operation as the following:
1. Set $d$ to be the maximum value of your array.
2. For every $i$ from $1$ to $n$ , replace $a_{i}$ with $d-a_{i}$ .
The goal is to predict the contents in the array after $k$ operations. Please help Ray determine what the final sequence will look like!
输入格式
Each test contains multiple test cases. The first line contains the number of cases $t$ ( $1 \le t \le 100$ ). Description of the test cases follows.
The first line of each test case contains two integers $n$ and $k$ ( $1 \leq n \leq 2 \cdot 10^5, 1 \leq k \leq 10^{18}$ ) – the length of your array and the number of operations to perform.
The second line of each test case contains $n$ integers $a_{1},a_{2},...,a_{n}$ $(-10^9 \leq a_{i} \leq 10^9)$ – the initial contents of your array.
It is guaranteed that the sum of $n$ over all test cases does not exceed $2 \cdot 10^5$ .
The first line of each test case contains two integers $n$ and $k$ ( $1 \leq n \leq 2 \cdot 10^5, 1 \leq k \leq 10^{18}$ ) – the length of your array and the number of operations to perform.
The second line of each test case contains $n$ integers $a_{1},a_{2},...,a_{n}$ $(-10^9 \leq a_{i} \leq 10^9)$ – the initial contents of your array.
It is guaranteed that the sum of $n$ over all test cases does not exceed $2 \cdot 10^5$ .
输出格式
For each case, print the final version of array $a$ after $k$ operations described above.
输入输出样例
输入 #1
3 2 1 -199 192 5 19 5 -1 4 2 0 1 2 69
输出 #1
391 0 0 6 1 3 5 0
In the first test case the array changes as follows:
- Initially, the array is $[-199, 192]$ . $d = 192$ .
- After the operation, the array becomes $[d-(-199), d-192] = [391, 0]$ .
- Initially, the array is $[-199, 192]$ . $d = 192$ .
- After the operation, the array becomes $[d-(-199), d-192] = [391, 0]$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted