CF178B2.Greedy Merchants

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The first input line contains two integers nn and mm , separated by a space, nn is the number of cities, and mm is the number of roads in the empire.

The following mm lines contain pairs of integers aia_{i} , bib_{i} (1<=ai,bi<=n,aibi)(1<=a_{i},b_{i}<=n,a_{i}≠b_{i}) , separated by a space — the numbers of cities connected by the ii -th road. It is guaranteed that any two cities are connected by no more than one road and that there exists a path between any two cities in the Roman Empire.

The next line contains a single integer kk — the number of merchants in the empire.

The following kk lines contain pairs of integers sis_{i} , lil_{i} (1<=si,li<=n)(1<=s_{i},l_{i}<=n) , separated by a space, — sis_{i} is the number of the city in which the warehouse of the ii -th merchant is located, and lil_{i} is the number of the city in which the shop of the ii -th merchant is located.

The input limitations for getting 20 points are:

  • 1<=n<=2001<=n<=200
  • 1<=m<=2001<=m<=200
  • 1<=k<=2001<=k<=200

The input limitations for getting 50 points are:

  • 1<=n<=20001<=n<=2000
  • 1<=m<=20001<=m<=2000
  • 1<=k<=20001<=k<=2000

The input limitations for getting 100 points are:

  • 1<=n<=1051<=n<=10^{5}
  • 1<=m<=1051<=m<=10^{5}
  • 1<=k<=1051<=k<=10^{5}

输入格式

Print exactly kk lines, the ii -th line should contain a single integer did_{i} — the number of dinars that the ii -th merchant paid.

输出格式

The given sample is illustrated in the figure below.

Let's describe the result for the first merchant. The merchant's warehouse is located in city 11 and his shop is in city 55 . Let us note that if either road, (1,2)(1,2) or (2,3)(2,3) is destroyed, there won't be any path between cities 11 and 55 anymore. If any other road is destroyed, the path will be preserved. That's why for the given merchant the answer is 22 .

输入输出样例

  • 输入#1

    7 8
    1 2
    2 3
    3 4
    4 5
    5 6
    5 7
    3 5
    4 7
    4
    1 5
    2 4
    2 6
    4 7
    

    输出#1

    2
    1
    2
    0
    

说明/提示

The given sample is illustrated in the figure below.

Let's describe the result for the first merchant. The merchant's warehouse is located in city 11 and his shop is in city 55 . Let us note that if either road, (1,2)(1,2) or (2,3)(2,3) is destroyed, there won't be any path between cities 11 and 55 anymore. If any other road is destroyed, the path will be preserved. That's why for the given merchant the answer is 22 .

首页