| Task: | Peli |
| Sender: | Vludo |
| Submission time: | 2024-10-13 01:22:04 +0300 |
| Language: | C++ (C++20) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | TIME LIMIT EXCEEDED | 0 |
| #2 | TIME LIMIT EXCEEDED | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | TIME LIMIT EXCEEDED | -- | 1, 2 | details |
| #2 | TIME LIMIT EXCEEDED | -- | 1, 2 | details |
| #3 | TIME LIMIT EXCEEDED | -- | 2 | details |
| #4 | TIME LIMIT EXCEEDED | -- | 1, 2 | details |
| #5 | ACCEPTED | 0.00 s | 1, 2 | details |
| #6 | TIME LIMIT EXCEEDED | -- | 2 | details |
| #7 | TIME LIMIT EXCEEDED | -- | 2 | details |
| #8 | ACCEPTED | 0.01 s | 1, 2 | details |
| #9 | TIME LIMIT EXCEEDED | -- | 2 | details |
| #10 | TIME LIMIT EXCEEDED | -- | 2 | details |
Code
#include<bits/stdc++.h>
using namespace std;
#define forn(i,n) for(int i=0;i<n;++i)
#define inf ((int)1.01e9)
#define N 2505
typedef long long ll;
typedef pair<int,int> pii;
int n,m,q,z[N][N],oddz[N][N];
vector<int> v[N];
// dijkstran, ei tarvita
void haku(int S, bool odd) {
priority_queue<pii> q;
q.push({0,S});
while(!q.empty()) {
auto[e,s] = q.top();
q.pop();
e--;
if (!odd) {
for (auto i : v[s]) {
if (z[S][i]<-e) continue;
z[S][i]=-e;
q.push({e,i});
}
} else {
for (auto i : v[s]) {
if (oddz[S][i]<-e && (oddz[S][i]&1)!=(z[S][i]&1))
continue;
oddz[S][i]=-e;
q.push({e,i});
}
}
}
}
void haku2(int S, bool odd) {
queue<pii> q;
q.push({0,S});
while(!q.empty()) {
auto[e,s] = q.front();
q.pop();
e++;
if (!odd) {
for (auto i : v[s]) {
if (z[S][i]<e) continue;
z[S][i]=e;
q.push({e,i});
}
} else {
for (auto i : v[s]) {
if (oddz[S][i]<e && (oddz[S][i]&1)!=(z[S][i]&1))
continue;
oddz[S][i]=e;
q.push({e,i});
}
}
}
}
int main() {
cin>>n>>m>>q;
int a,b,x;
forn(i,m) {
cin>>a>>b;
v[a].push_back(b);
v[b].push_back(a);
}
forn(i,n) fill(z[i+1],z[i+1]+n+1,inf);
forn(i,n) fill(oddz[i+1],oddz[i+1]+n+1,inf);
forn(i,n) z[i+1][i+1]=0;
forn(i,n) haku2(i+1,false);
forn(i,n) haku2(i+1,true);
/*
// debug
forn(i,n) {
forn(j,n)
cout<<z[i+1][j+1]<<' ';
cout<<endl;
}
cout<<endl;
forn(i,n) {
forn(j,n)
cout<<oddz[i+1][j+1]<<' ';
cout<<endl;
}
cout<<endl;
//
*/
forn(i,q) {
cin>>a>>b>>x;
if (x>=z[a][b])
if ((x&1)==((z[a][b])&1)||(x>=oddz[a][b]&&(x&1)==((oddz[a][b])&1))) {
cout<<"YES"<<endl; continue;
}
cout<<"NO"<<endl;
}
}Test details
Test 1
Group: 1, 2
Verdict: TIME LIMIT EXCEEDED
| 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: TIME LIMIT EXCEEDED
| 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: TIME LIMIT EXCEEDED
| input |
|---|
| 2500 2499 100000 821 822 2351 2352 752 753 832 833 ... |
| correct output |
|---|
| NO YES YES NO NO ... |
| user output |
|---|
| (empty) |
Test 4
Group: 1, 2
Verdict: TIME LIMIT EXCEEDED
| 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: ACCEPTED
| input |
|---|
| 11 11 100 10 11 7 8 1 2 5 6 ... |
| correct output |
|---|
| YES YES YES YES YES ... |
| user output |
|---|
| YES YES YES YES YES ... Truncated |
Test 6
Group: 2
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 2500 2500 100000 1936 1937 1884 1885 751 752 831 832 ... |
| correct output |
|---|
| NO YES YES NO NO ... |
| user output |
|---|
| (empty) |
Test 7
Group: 2
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 2499 2499 100000 821 822 2351 2352 752 753 832 833 ... |
| correct output |
|---|
| YES YES YES YES YES ... |
| user output |
|---|
| (empty) |
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: TIME LIMIT EXCEEDED
| input |
|---|
| 2500 4999 100000 1191 2361 251 399 1026 2300 82 1655 ... |
| correct output |
|---|
| YES YES YES YES YES ... |
| user output |
|---|
| (empty) |
Test 10
Group: 2
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 2500 4999 100000 2023 2218 23 51 1020 1272 11 114 ... |
| correct output |
|---|
| YES YES YES YES YES ... |
| user output |
|---|
| (empty) |
