大意:让你求无向图的桥(割边) 思路:一次查询,重建一次图,然后求一次割边,TLE。去网上开了看资料,可以用LCA暴力查询,唔,改天看看LCA。 TLE CODE: …
文章目录1. 题目2. 解题1. 题目
表: Points
------------------------
| Column Name | Type |
------------------------
| id | int |
| x_value | int |
| y_value | int |
------------------------
id 是该表主键.
每个点都表示…
文章目录1. 题目2. 解题1. 题目
表: NPV
------------------------
| Column Name | Type |
------------------------
| id | int |
| year | int |
| npv | int |
------------------------
(id, year) 是该表主键.
该表有…