# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
601516 |
2022-07-22T06:44:10 Z |
jairRS |
Werewolf (IOI18_werewolf) |
C++17 |
|
298 ms |
524288 KB |
#include "werewolf.h"
#include "bits/stdc++.h"
using namespace std;
using vi = vector<int>;
using vvi = vector<vi>;
using pii = pair<int, int>;
const int INF = 1e9;
vi check_validity(int N, vi X, vi Y, vi S, vi E, vi L, vi R)
{
vvi adj = vvi(N);
vvi highestOnPath = vvi(N, vi(N, INF));
for (int i = 0; i < N; i++)
{
adj[X[i]].push_back(Y[i]);
adj[Y[i]].push_back(X[i]);
}
priority_queue<pii, vector<pii>, greater<pii>> pqueue;
for (int i = 0; i < N; i++)
{
pqueue.push({i, i});
highestOnPath[i][i] = i;
while (!pqueue.empty())
{
int cur = pqueue.top().second;
if (pqueue.top().first > highestOnPath[i][cur])
continue;
pqueue.pop();
for (int a : adj[cur])
if (max(highestOnPath[i][cur], a) < highestOnPath[i][a])
{
highestOnPath[i][a] = max(highestOnPath[i][cur], a);
pqueue.push({highestOnPath[i][a], a});
}
}
}
int Q = S.size();
vi ans(Q);
for (int i = 0; i < Q; i++)
{
vector<int> visited(N, false);
queue<int> queue;
queue.push(S[i]);
visited[S[i]] = true;
while (!queue.empty())
{
int cur = queue.front();
queue.pop();
if (cur < L[i])
continue;
if (highestOnPath[cur][E[i]] <= R[i])
ans[i] = 1;
for (int a : adj[cur])
{
if (visited[a])
continue;
queue.push(a);
visited[a] = true;
}
}
}
return ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
340 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
340 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
298 ms |
524288 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
340 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |