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.
N <= 2 * 10^5, M = min( 2 * 10^5, N * ( N — 1 ) / 2 )
# | User | Rating |
---|---|---|
1 | jiangly | 3976 |
2 | tourist | 3815 |
3 | jqdai0815 | 3682 |
4 | ksun48 | 3614 |
5 | orzdevinwang | 3526 |
6 | ecnerwala | 3514 |
7 | Benq | 3482 |
8 | hos.lyric | 3382 |
9 | gamegame | 3374 |
10 | heuristica | 3357 |
# | User | Contrib. |
---|---|---|
1 | cry | 169 |
2 | -is-this-fft- | 165 |
3 | Um_nik | 161 |
4 | atcoder_official | 160 |
5 | djm03178 | 157 |
6 | Dominater069 | 156 |
7 | adamant | 154 |
8 | luogu_official | 152 |
9 | awoo | 151 |
10 | TheScrasse | 147 |
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.
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 |
---|