| Task: | Peli |
| Sender: | DualRed |
| Submission time: | 2024-01-20 15:16:06 +0200 |
| Language: | C++ (C++20) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | RUNTIME ERROR | 0 |
| #2 | RUNTIME ERROR | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | RUNTIME ERROR | 0.00 s | 1, 2 | details |
| #2 | RUNTIME ERROR | 0.00 s | 1, 2 | details |
| #3 | RUNTIME ERROR | 0.00 s | 2 | details |
| #4 | RUNTIME ERROR | 0.00 s | 1, 2 | details |
| #5 | RUNTIME ERROR | 0.00 s | 1, 2 | details |
| #6 | RUNTIME ERROR | 0.00 s | 2 | details |
| #7 | RUNTIME ERROR | 0.00 s | 2 | details |
| #8 | ACCEPTED | 0.01 s | 1, 2 | details |
| #9 | RUNTIME ERROR | 0.00 s | 2 | details |
| #10 | RUNTIME ERROR | 0.00 s | 2 | details |
Code
#include<bits/stdc++.h>
using namespace std;
typedef long long int ll;
int main(){
cin.tie(0)->sync_with_stdio(NULL);
int n, m, q;
cin >> n >> m >> q;
if(n > 50 || m > 100 || q > 100) assert(false);
vector<vector<int>> v(n+1);
for(int i = 0; i < m; i++){
int a, b; cin >> a >> b;
v[a].push_back(b);
v[b].push_back(a);
}
vector<vector<vector<int>>> memo(n);
for(int iii = 0; iii < q; iii++){
int a, b; ll x;
cin >> a >> b >> x;
if(memo[a].size() == 0){
vector<vector<int>> res(n+1, vector<int>(2, -1));
priority_queue<tuple<int, int, int>> q; // -distance, vertex, parity
q.push(make_tuple(0, a, 0));
while(q.size() > 0){
tuple<int, int, int> t = q.top(); q.pop();
int d = get<0>(t);
int i = get<1>(t);
int p = get<2>(t);
if(res[i][p] != -1) continue;
res[i][p] = -d;
for(int j : v[i]){
if(res[j][1-p] != -1) continue;
q.push(make_tuple(d-1, j, 1-p));
}
}
memo[a] = res;
}
if(x % 2 == 0){
if(memo[a][b][0] != -1 && memo[a][b][0] <= x) cout << "YES\n";
else cout << "NO\n";
}
if(x % 2 == 1){
if(memo[a][b][1] != -1 && memo[a][b][1] <= x) cout << "YES\n";
else cout << "NO\n";
}
}
}Test details
Test 1
Group: 1, 2
Verdict: RUNTIME ERROR
| input |
|---|
| 2 1 100 1 2 1 1 0 1 2 0 2 1 0 ... |
| correct output |
|---|
| YES NO NO YES NO ... |
| user output |
|---|
| (empty) |
Test 2
Group: 1, 2
Verdict: RUNTIME ERROR
| input |
|---|
| 50 49 100 33 34 7 8 49 50 47 48 ... |
| correct output |
|---|
| NO NO NO NO NO ... |
| user output |
|---|
| (empty) |
Test 3
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 2500 2499 100000 821 822 2351 2352 752 753 832 833 ... |
| correct output |
|---|
| NO YES YES NO NO ... |
| user output |
|---|
| (empty) |
Error:
code: input/code.cpp:10: int main(): Assertion `false' failed.
Test 4
Group: 1, 2
Verdict: RUNTIME ERROR
| input |
|---|
| 12 12 100 9 10 2 3 1 12 1 2 ... |
| correct output |
|---|
| NO NO NO NO NO ... |
| user output |
|---|
| (empty) |
Test 5
Group: 1, 2
Verdict: RUNTIME ERROR
| input |
|---|
| 11 11 100 10 11 7 8 1 2 5 6 ... |
| correct output |
|---|
| YES YES YES YES YES ... |
| user output |
|---|
| (empty) |
Test 6
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 2500 2500 100000 1936 1937 1884 1885 751 752 831 832 ... |
| correct output |
|---|
| NO YES YES NO NO ... |
| user output |
|---|
| (empty) |
Error:
code: input/code.cpp:10: int main(): Assertion `false' failed.
Test 7
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 2499 2499 100000 821 822 2351 2352 752 753 832 833 ... |
| correct output |
|---|
| YES YES YES YES YES ... |
| user output |
|---|
| (empty) |
Error:
code: input/code.cpp:10: int main(): Assertion `false' failed.
Test 8
Group: 1, 2
Verdict: ACCEPTED
| input |
|---|
| 50 99 100 40 47 34 50 44 47 15 16 ... |
| correct output |
|---|
| YES YES YES YES YES ... |
| user output |
|---|
| YES YES YES YES YES ... Truncated |
Test 9
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 2500 4999 100000 1191 2361 251 399 1026 2300 82 1655 ... |
| correct output |
|---|
| YES YES YES YES YES ... |
| user output |
|---|
| (empty) |
Error:
code: input/code.cpp:10: int main(): Assertion `false' failed.
Test 10
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 2500 4999 100000 2023 2218 23 51 1020 1272 11 114 ... |
| correct output |
|---|
| YES YES YES YES YES ... |
| user output |
|---|
| (empty) |
Error:
code: input/code.cpp:10: int main(): Assertion `false' failed.
