| 시간 제한 | 메모리 제한 | 제출 | 정답 | 맞힌 사람 | 정답 비율 |
|---|---|---|---|---|---|
| 7 초 | 1024 MB | 202 | 34 | 20 | 16.260% |
The year 3742 has arrived, and now it is Cyberland's turn to host the APIO. In this world, there are $N$ countries indexed from 0ドル$ to $N - 1,ドル along with $M$ bidirectional roads (allowing travel in both directions) indexed from 0ドル$ to $M - 1$. The $i$-th road (0ドル ≤ i < M$) connects two different countries, $x[i]$ and $y[i],ドル and requires a certain amount of time $c[i]$ to pass the road. All participants have gathered in Cyberland for the APIO, except for your country. You are living in country 0ドル,ドル and Cyberland is country $H$. As the cleverest person in your country, your assistance is urgently needed once again. To be more specific, you are asked to determine the minimum time required to reach Cyberland from your country.
Some countries can clear your total passing time. Also, some countries can divide your total passing time by 2ドル$ (divide-by-2ドル$ ability). You can visit a country repeatedly. Every time you visit a country, you may choose whether to use the special ability in the country. But you can use the special ability at most once in a single visit (which means that special ability can be used multiple times by visiting the country multiple times). Moreover, you can only use the divide-by-2ドル$ ability at most $K$ times in case of being caught by Cyberland Chemistry Foundation. Once you reached Cyberland, you cannot move anywhere because the great APIO contest will be held soon.
An array $arr$ is given, where $arr_i$ (0ドル ≤ i < N$) shows the special abilities of country $i$. There are 3ドル$ types of special abilities:
It is guaranteed that $arr_0 = arr_H = 1$ holds. In other words, Cyberland and your country do not have any special abilities.
Your country does not want to miss any moment of APIO, so you need to find the minimum time to reach Cyberland. If you cannot reach to Cyberland, your answer should be $-1$.
You need to implement the following function:
double solve(int N, int M, int K, int H, std::vector<int> x, std::vector<int> y, std::vector<int> c, std::vector<int> arr);
Assume that return value of contestant's is $ans_1,ドル and the return value of standard's is $ans_2,ドル your return value is considered correct if and only if $\frac{|ans_1 - ans_2|}{max{\{ans_2, 1\}}} \le 10^{-6}$.
Note: Since the procedure can be called more than once, contestants need to pay attention to the impact of the remaining data of the previous call on the current call.
Consider the following call:
solve(3, 2, 30, 2, {1, 2}, {2, 0}, {12, 4}, {1, 2, 1});
The only path to Cyberland is 0ドル → 2,ドル because you can not move to anywhere after reaching Cyberland. The calculation of passing time is shown as below.
| country number | passing time |
|---|---|
| 0ドル$ | 0ドル$ |
| 2ドル$ | 0ドル + 4 → 4$ (sum) $→ 4$ (special ability) |
Therefore, the procedure should return 4ドル$.
Consider the following call:
solve(4, 4, 30, 3, {0, 0, 1, 2}, {1, 2, 3, 3}, {5, 4, 2, 4}, {1, 0, 2, 1});
There are two paths from your country to Cyberland. They are: 0ドル → 1 → 3$ and 0ドル → 2 → 3$.
If your path is 0ドル → 1 → 3,ドル the calculation of passing time is shown as below.
| country number | passing time |
|---|---|
| 0ドル$ | 0ドル$ |
| 1ドル$ | 0ドル + 5 → 5$ (sum) $→ 0$ (special ability) |
| 3ドル$ | 0ドル + 2 → 2$ (sum) $→ 2$ (special ability) |
If your path is 0ドル → 2 → 3,ドル the calculation of passing time is shown as below.
| country number | passing time |
|---|---|
| 0ドル$ | 0ドル$ |
| 2ドル$ | 0ドル + 4 → 4$ (sum) $→ 2$ (special ability) |
| 3ドル$ | 2ドル + 4 → 6$ (sum) $→ 6$ (special ability) |
Therefore, the procedure should return 2ドル$.
| 번호 | 배점 | 제한 |
|---|---|---|
| 1 | 5 | $N ≤ 3,ドル $K ≤ 30$. |
| 2 | 8 | $M = N - 1,ドル $K ≤ 30,ドル $arr[i] = 1,ドル you can travel from any countries to another via the $M$ edges. |
| 3 | 13 | $M = N - 1,ドル $K ≤ 30,ドル $arr[i] ∈ 0, 1,ドル you can travel from any countries to another via the $M$ edges. |
| 4 | 19 | $M = N - 1,ドル $K ≤ 30,ドル $x[i] = i,ドル $y[i] = i + 1$. |
| 5 | 7 | $K ≤ 30,ドル $arr[i] = 1$. |
| 6 | 16 | $K ≤ 30,ドル $arr[i] ∈ \{0, 1\}$. |
| 7 | 29 | $K ≤ 30$. |
| 8 | 3 | No additional constraints. |
The sample grader reads the input in the following format:
For each of the following $T$ test cases:
The sample grader prints your answers in the following format:
For each test cases:
solveC++17, C++20, C++17 (Clang), C++20 (Clang)