Phoenix and Odometers

题意翻译

给定一张 $n$ 个点 $m$ 条边的有向图,有边权,进行 $q$ 次询问($n,m,q\le 2\times 10^5$,边权为不超过 $10^9$ 的正整数)。 每次询问给定三个参数 $v,s,t(0\le s<t\le 10^9)$,你需要回答是否存在一条起点终点均为 $v$ 的路径,满足 $\text{路径长}+s\equiv 0\pmod t$。

题目描述

In Fire City, there are $ n $ intersections and $ m $ one-way roads. The $ i $ -th road goes from intersection $ a_i $ to $ b_i $ and has length $ l_i $ miles. There are $ q $ cars that may only drive along those roads. The $ i $ -th car starts at intersection $ v_i $ and has an odometer that begins at $ s_i $ , increments for each mile driven, and resets to $ 0 $ whenever it reaches $ t_i $ . Phoenix has been tasked to drive cars along some roads (possibly none) and return them to their initial intersection with the odometer showing $ 0 $ . For each car, please find if this is possible. A car may visit the same road or intersection an arbitrary number of times. The odometers don't stop counting the distance after resetting, so odometers may also be reset an arbitrary number of times.

输入输出格式

输入格式


The first line of the input contains two integers $ n $ and $ m $ ( $ 2 \le n \le 2 \cdot 10^5 $ ; $ 1 \le m \le 2 \cdot 10^5 $ ) — the number of intersections and the number of roads, respectively. Each of the next $ m $ lines contain three integers $ a_i $ , $ b_i $ , and $ l_i $ ( $ 1 \le a_i, b_i \le n $ ; $ a_i \neq b_i $ ; $ 1 \le l_i \le 10^9 $ ) — the information about the $ i $ -th road. The graph is not necessarily connected. It is guaranteed that between any two intersections, there is at most one road for each direction. The next line contains an integer $ q $ ( $ 1 \le q \le 2 \cdot 10^5 $ ) — the number of cars. Each of the next $ q $ lines contains three integers $ v_i $ , $ s_i $ , and $ t_i $ ( $ 1 \le v_i \le n $ ; $ 0 \le s_i < t_i \le 10^9 $ ) — the initial intersection of the $ i $ -th car, the initial number on the $ i $ -th odometer, and the number at which the $ i $ -th odometer resets, respectively.

输出格式


Print $ q $ answers. If the $ i $ -th car's odometer may be reset to $ 0 $ by driving through some roads (possibly none) and returning to its starting intersection $ v_i $ , print YES. Otherwise, print NO.

输入输出样例

输入样例 #1

4 4
1 2 1
2 3 1
3 1 2
1 4 3
3
1 1 3
1 2 4
4 0 1

输出样例 #1

YES
NO
YES

输入样例 #2

4 5
1 2 1
2 3 1
3 1 2
1 4 1
4 3 2
2
1 2 4
4 3 5

输出样例 #2

YES
YES

说明

The illustration for the first example is below: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1515G/16d551900219fd749f7184c3ecf1105ab63bdc15.png)In the first query, Phoenix can drive through the following cities: $ 1 $ $ \rightarrow $ $ 2 $ $ \rightarrow $ $ 3 $ $ \rightarrow $ $ 1 $ $ \rightarrow $ $ 2 $ $ \rightarrow $ $ 3 $ $ \rightarrow $ $ 1 $ . The odometer will have reset $ 3 $ times, but it displays $ 0 $ at the end. In the second query, we can show that there is no way to reset the odometer to $ 0 $ and return to intersection $ 1 $ . In the third query, the odometer already displays $ 0 $ , so there is no need to drive through any roads. Below is the illustration for the second example: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1515G/e349b4f6bf9a850ce4ba1c7013ad10f004634d45.png)