A11919 | Intercity Travelling
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Leha is planning his journey from Moscow to Saratov. He hates trains, so he has decided to get from one city to another by car.
The path from Moscow to Saratov can be represented as a straight line (well, it's not that straight in reality, but in this problem we will consider it to be straight), and the distance between Moscow and Saratov is $n$ km. Let's say that Moscow is situated at the point with coordinate $0$ km, and Saratov — at coordinate $n$ km.
Driving for a long time may be really difficult. Formally, if Leha has already covered $i$ kilometers since he stopped to have a rest, he considers the difficulty of covering $(i + 1)$ -th kilometer as $a_{i + 1}$ . It is guaranteed that for every $i \in [1, n - 1]$ $a_i \le a_{i + 1}$ . The difficulty of the journey is denoted as the sum of difficulties of each kilometer in the journey.
Fortunately, there may be some rest sites between Moscow and Saratov. Every integer point from $1$ to $n - 1$ may contain a rest site. When Leha enters a rest site, he may have a rest, and the next kilometer will have difficulty $a_1$ , the kilometer after it — difficulty $a_2$ , and so on.
For example, if $n = 5$ and there is a rest site in coordinate $2$ , the difficulty of journey will be $2a_1 + 2a_2 + a_3$ : the first kilometer will have difficulty $a_1$ , the second one — $a_2$ , then Leha will have a rest, and the third kilometer will have difficulty $a_1$ , the fourth — $a_2$ , and the last one — $a_3$ . Another example: if $n = 7$ and there are rest sites in coordinates $1$ and $5$ , the difficulty of Leha's journey is $3a_1 + 2a_2 + a_3 + a_4$ .
Leha doesn't know which integer points contain rest sites. So he has to consider every possible situation. Obviously, there are $2^{n - 1}$ different distributions of rest sites (two distributions are different if there exists some point $x$ such that it contains a rest site in exactly one of these distributions). Leha considers all these distributions to be equiprobable. He wants to calculate $p$ — the expected value of difficulty of his journey.
Obviously, $p \cdot 2^{n - 1}$ is an integer number. You have to calculate it modulo $998244353$ .
The path from Moscow to Saratov can be represented as a straight line (well, it's not that straight in reality, but in this problem we will consider it to be straight), and the distance between Moscow and Saratov is $n$ km. Let's say that Moscow is situated at the point with coordinate $0$ km, and Saratov — at coordinate $n$ km.
Driving for a long time may be really difficult. Formally, if Leha has already covered $i$ kilometers since he stopped to have a rest, he considers the difficulty of covering $(i + 1)$ -th kilometer as $a_{i + 1}$ . It is guaranteed that for every $i \in [1, n - 1]$ $a_i \le a_{i + 1}$ . The difficulty of the journey is denoted as the sum of difficulties of each kilometer in the journey.
Fortunately, there may be some rest sites between Moscow and Saratov. Every integer point from $1$ to $n - 1$ may contain a rest site. When Leha enters a rest site, he may have a rest, and the next kilometer will have difficulty $a_1$ , the kilometer after it — difficulty $a_2$ , and so on.
For example, if $n = 5$ and there is a rest site in coordinate $2$ , the difficulty of journey will be $2a_1 + 2a_2 + a_3$ : the first kilometer will have difficulty $a_1$ , the second one — $a_2$ , then Leha will have a rest, and the third kilometer will have difficulty $a_1$ , the fourth — $a_2$ , and the last one — $a_3$ . Another example: if $n = 7$ and there are rest sites in coordinates $1$ and $5$ , the difficulty of Leha's journey is $3a_1 + 2a_2 + a_3 + a_4$ .
Leha doesn't know which integer points contain rest sites. So he has to consider every possible situation. Obviously, there are $2^{n - 1}$ different distributions of rest sites (two distributions are different if there exists some point $x$ such that it contains a rest site in exactly one of these distributions). Leha considers all these distributions to be equiprobable. He wants to calculate $p$ — the expected value of difficulty of his journey.
Obviously, $p \cdot 2^{n - 1}$ is an integer number. You have to calculate it modulo $998244353$ .
输入格式
The first line contains one number $n$ ( $1 \le n \le 10^6$ ) — the distance from Moscow to Saratov.
The second line contains $n$ integer numbers $a_1$ , $a_2$ , ..., $a_n$ ( $1 \le a_1 \le a_2 \le \dots \le a_n \le 10^6$ ), where $a_i$ is the difficulty of $i$ -th kilometer after Leha has rested.
The second line contains $n$ integer numbers $a_1$ , $a_2$ , ..., $a_n$ ( $1 \le a_1 \le a_2 \le \dots \le a_n \le 10^6$ ), where $a_i$ is the difficulty of $i$ -th kilometer after Leha has rested.
输出格式
Print one number — $p \cdot 2^{n - 1}$ , taken modulo $998244353$ .
输入输出样例
输入 #1
2 1 2
输出 #1
5
输入 #2
4 1 3 3 7
输出 #2
60
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted