CF1304E 1-Trees and Queries

Description

Gildong was hiking a mountain, walking by millions of trees. Inspired by them, he suddenly came up with an interesting idea for trees in data structures: What if we add another edge in a tree? Then he found that such tree-like graphs are called 1-trees. Since Gildong was bored of solving too many tree problems, he wanted to see if similar techniques in trees can be used in 1-trees as well. Instead of solving it by himself, he's going to test you by providing queries on 1-trees. First, he'll provide you a tree (not 1-tree) with $ n $ vertices, then he will ask you $ q $ queries. Each query contains $ 5 $ integers: $ x $ , $ y $ , $ a $ , $ b $ , and $ k $ . This means you're asked to determine if there exists a path from vertex $ a $ to $ b $ that contains exactly $ k $ edges after adding a bidirectional edge between vertices $ x $ and $ y $ . A path can contain the same vertices and same edges multiple times. All queries are independent of each other; i.e. the added edge in a query is removed in the next query.

Input Format

N/A

Output Format

N/A

Explanation/Hint

The image below describes the tree (circles and solid lines) and the added edges for each query (dotted lines). ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1304E/ae42a3afaaf846d868b755b8beca5100d46809fd.png)Possible paths for the queries with "YES" answers are: - $ 1 $ -st query: $ 1 $ – $ 3 $ – $ 2 $ - $ 2 $ -nd query: $ 1 $ – $ 2 $ – $ 3 $ - $ 4 $ -th query: $ 3 $ – $ 4 $ – $ 2 $ – $ 3 $ – $ 4 $ – $ 2 $ – $ 3 $ – $ 4 $ – $ 2 $ – $ 3 $