GCD of Path Weights

AtCoder
IDarc144_e
Time2000ms
Memory256MB
Difficulty
You are given a directed graph $G$ with $N$ vertices and $M$ edges. The vertices are numbered $1, 2, \ldots, N$. The $i$\-th edge is directed from Vertex $a_i$ to Vertex $b_i$, where $a_i < b_i$. The **beautifulness** of a sequence of positive integers $W = (W_1, W_2, \ldots, W_N)$ is defined as the maximum positive integer $x$ that satisfies the following: * For every path $(v_1, \ldots, v_k)$ ($v_1 = 1, v_k = N$) from Vertex $1$ to Vertex $N$ in $G$, $\sum_{i=1}^k W_{v_i}$ is a multiple of $x$. You are given an integer sequence $A = (A_1, A_2, \ldots, A_N)$. Find the maximum beautifulness of a sequence of positive integers $W = (W_1, \ldots, W_N)$ such that $A_i \neq -1 \implies W_i = A_i$. If the maximum beautifulness does not exist, print `-1`. ## Constraints * $2\leq N\leq 3\times 10^5$ * $1\leq M\leq 3\times 10^5$ * $1\leq a_i < b_i \leq N$ * $(a_i,b_i)\neq (a_j,b_j)$ if $i\neq j$ * In the given graph $G$, there is a path from Vertex $1$ to Vertex $N$. * $A_i = -1$ or $1\leq A_i\leq 10^{12}$ ## Input Input is given from Standard Input in the following format: $N$ $M$ $a_1$ $b_1$ $\vdots$ $a_M$ $b_M$ $A_1$ $A_2$ $\ldots$ $A_N$ [samples]
Samples
Input #1
4 4
1 2
1 3
2 4
3 4
-1 3 7 -1
Output #1
4

There are two paths from Vertex $1$ to Vertex $N$: $(1,2,4)$ and $(1,3,4)$. For instance, $W = (5, 3, 7, 8)$ has a beautifulness of $4$. Indeed, both $W_1 + W_2 + W_4 = 16$ and $W_1 + W_3 + W_4 = 20$ are multiples of $4$.
Input #2
4 5
1 2
1 3
2 4
3 4
1 4
-1 3 7 -1
Output #2
1

There are three paths from Vertex $1$ to Vertex $N$: $(1,2,4)$, $(1,3,4)$, and $(1,4)$. For instance, $W = (5, 3, 7, 8)$ has a beautifulness of $1$.
Input #3
4 4
1 2
1 3
2 4
3 4
3 -1 -1 7
Output #3
\-1

For instance, $W = (3, 10^{100}, 10^{100}, 7)$ has a beautifulness of $10^{100}+10$. Since you can increase the beautifulness of $W$ as much as you want, there is no maximum beautifulness.
Input #4
5 5
1 3
3 5
2 3
3 4
1 4
2 -1 3 -1 4
Output #4
9
API Response (JSON)
{
  "problem": {
    "name": "GCD of Path Weights",
    "description": {
      "content": "You are given a directed graph $G$ with $N$ vertices and $M$ edges. The vertices are numbered $1, 2, \\ldots, N$. The $i$\\-th edge is directed from Vertex $a_i$ to Vertex $b_i$, where $a_i < b_i$. The ",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "arc144_e"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "You are given a directed graph $G$ with $N$ vertices and $M$ edges. The vertices are numbered $1, 2, \\ldots, N$. The $i$\\-th edge is directed from Vertex $a_i$ to Vertex $b_i$, where $a_i < b_i$.\nThe ...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments