A14041 | Wizard of Orz
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There are $n$ digital panels placed in a straight line. Each panel can show any digit from $0$ to $9$ . Initially, all panels show $0$ .
Every second, the digit shown by each panel increases by $1$ . In other words, at the end of every second, a panel that showed $9$ would now show $0$ , a panel that showed $0$ would now show $1$ , a panel that showed $1$ would now show $2$ , and so on.
When a panel is paused, the digit displayed on the panel does not change in the subsequent seconds.
You must pause exactly one of these panels, at any second you wish. Then, the panels adjacent to it get paused one second later, the panels adjacent to those get paused $2$ seconds later, and so on. In other words, if you pause panel $x$ , panel $y$ (for all valid $y$ ) would be paused exactly $|x−y|$ seconds later.
For example, suppose there are $4$ panels, and the $3$ -rd panel is paused when the digit $9$ is on it.
- The panel $1$ pauses $2$ seconds later, so it has the digit $1$ ;
- the panel $2$ pauses $1$ second later, so it has the digit $0$ ;
- the panel $4$ pauses $1$ second later, so it has the digit $0$ .
The resulting $4$ -digit number is $1090$ . Note that this example is not optimal for $n = 4$ .
Once all panels have been paused, you write the digits displayed on them from left to right, to form an $n$ digit number (it can consist of leading zeros). What is the largest possible number you can get? Initially, all panels show $0$ .
Every second, the digit shown by each panel increases by $1$ . In other words, at the end of every second, a panel that showed $9$ would now show $0$ , a panel that showed $0$ would now show $1$ , a panel that showed $1$ would now show $2$ , and so on.
When a panel is paused, the digit displayed on the panel does not change in the subsequent seconds.
You must pause exactly one of these panels, at any second you wish. Then, the panels adjacent to it get paused one second later, the panels adjacent to those get paused $2$ seconds later, and so on. In other words, if you pause panel $x$ , panel $y$ (for all valid $y$ ) would be paused exactly $|x−y|$ seconds later.
For example, suppose there are $4$ panels, and the $3$ -rd panel is paused when the digit $9$ is on it.
- The panel $1$ pauses $2$ seconds later, so it has the digit $1$ ;
- the panel $2$ pauses $1$ second later, so it has the digit $0$ ;
- the panel $4$ pauses $1$ second later, so it has the digit $0$ .
The resulting $4$ -digit number is $1090$ . Note that this example is not optimal for $n = 4$ .
Once all panels have been paused, you write the digits displayed on them from left to right, to form an $n$ digit number (it can consist of leading zeros). What is the largest possible number you can get? Initially, all panels show $0$ .
输入格式
The first line of the input contains a single integer $t$ ( $1 \le t \le 100$ ) — the number of test cases. Each test case consists of a single line containing a single integer $n$ ( $1 \le n \le 2\cdot10^5$ ).
It is guaranteed that the sum of $n$ over all test cases does not exceed $2\cdot10^5$ .
It is guaranteed that the sum of $n$ over all test cases does not exceed $2\cdot10^5$ .
输出格式
For each test case, print the largest number you can achieve, if you pause one panel optimally.
输入输出样例
输入 #1
2 1 2
输出 #1
9 98
In the first test case, it is optimal to pause the first panel when the number $9$ is displayed on it.
In the second test case, it is optimal to pause the second panel when the number $8$ is displayed on it.
In the second test case, it is optimal to pause the second panel when the number $8$ is displayed on it.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted