Given a graph with N nodes with each node numbered from 1 to N and M edges and a target vertex T. Find the number of different ways to reach target vertex T from vertex numbered 1.
2 <= N <= 2 * 10^5,
M = min( 2 * 10^5, N * ( N — 1 ) / 2 )
# | User | Rating |
---|---|---|
1 | tourist | 3985 |
2 | jiangly | 3814 |
3 | jqdai0815 | 3682 |
4 | Benq | 3529 |
5 | orzdevinwang | 3526 |
6 | ksun48 | 3517 |
7 | Radewoosh | 3410 |
8 | hos.lyric | 3399 |
9 | ecnerwala | 3392 |
9 | Um_nik | 3392 |
# | User | Contrib. |
---|---|---|
1 | cry | 169 |
2 | maomao90 | 162 |
2 | Um_nik | 162 |
4 | atcoder_official | 161 |
5 | djm03178 | 158 |
6 | -is-this-fft- | 157 |
7 | adamant | 155 |
8 | awoo | 154 |
8 | Dominater069 | 154 |
10 | luogu_official | 151 |
How to solve this graph problem?
Given a graph with N nodes with each node numbered from 1 to N and M edges and a target vertex T. Find the number of different ways to reach target vertex T from vertex numbered 1.
2 <= N <= 2 * 10^5,
M = min( 2 * 10^5, N * ( N — 1 ) / 2 )
Rev. | Lang. | By | When | Δ | Comment | |
---|---|---|---|---|---|---|
en6 | ALuca_Rd | 2022-02-06 23:39:27 | 39 | Tiny change: 'ash; 5sec \n' -> 'ash; 5sec \n\nCompute the answer modulo 10^9 + 7. \n' | ||
en5 | ALuca_Rd | 2022-02-06 23:38:19 | 27 | Tiny change: ' ) / 2 )` \n' -> ' ) / 2 )` \n\nTime limit - 5sec \n' | ||
en4 | ALuca_Rd | 2022-02-06 21:40:47 | 8 | Tiny change: ', N * ( N — 1 ) / 2 )' -> ', N * ( N - 1 ) / 2 )' | ||
en3 | ALuca_Rd | 2022-02-06 21:40:21 | 9 | |||
en2 | ALuca_Rd | 2022-02-06 21:39:05 | 2 | Tiny change: '= 2 * 10^5\nM = min(' -> '= 2 * 10^5, \nM = min(' | ||
en1 | ALuca_Rd | 2022-02-06 21:37:57 | 282 | Initial revision (published) |
Name |
---|