시간 제한메모리 제한제출정답맞힌 사람정답 비율
4 초 1024 MB0000.000%

문제

Art is a computer science student at UT. Over the last two semesters, he has applied for dozens of internships, and he's finally landed his dream job: designing neural networks for a hot new machine learning startup in Austin.

A neural network is a directed graph whose nodes are partitioned into layers. If $A_i$ is the number of nodes in the $i$-th layer and there are $N$ layers in total, then the graph has $\sum_{i=1}^N A_i$ nodes. All the edges in the graph go from a node in the $i$-th layer to a node in the $(i+1)$-th layer. These graphs are used for computation in the following manner: input is provided to the nodes in layer $1$, information flows magically along the edges of the graph, and output is read from the nodes in layer $N$.

On Art's first day of work, his manager gives him an array $A$ of length $N$ specifying the number of nodes in each layer of a neural network, and asks him to add some edges to make it interesting. A neural network is said to be interesting if, for every node $u$ in the graph (including those in layer $1$ and layer $N$), there exists a path along which information can flow from layer $1$ to layer $N$ that passes through $u$.

Art realizes that there may be many possible interesting networks he could build using the given specification. Before he complains to his manager about the ill-defined nature of his task, though, he wants you to help him determine just how many such networks there are. Since the answer may be very large, output its remainder modulo the prime $998\,244\,353$.

Note that the nodes in the graph are labeled. Nodes $1, \dots, A_1$ belong to layer $1$; nodes $A_1+1,\dots,A_1+A_2$ belong to layer $2$, and so on. Two networks are considered different if there is an edge that exists in one network but not in the other.

입력

The first line of input contains a single integer $N$ ($2 \leq N \leq 5 \cdot 10^5$), the number of layers in the network. The second line of input contains $N$ space-separated integers: the $i$-th integer is $A_i$, the number of nodes in layer $i$. (For each $i$, $1 \leq A_i \leq 5 \cdot 10^5$; futhermore, $\sum_{i=1}^N A_i \leq 5 \cdot 10^5$. That is, the total number of nodes is at most $5 \cdot 10^5$, and each layer has at least one node.)

출력

Output a single integer, the number of distinct interesting neural networks corresponding to the given specification modulo $998\,244\,353$.

예제 입력 1

3
2 3 2

예제 출력 1

625

예제 입력 2

3
1 2 1

예제 출력 2

1

출처

University > UT Invitational Programming Contest > UT Invitational Programming Contest 2019 L번

  • 문제를 만든 사람: Ethan Arnold