# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
833862 |
2023-08-22T09:09:46 Z |
HollaFoil |
Arcade (NOI20_arcade) |
C++14 |
|
3 ms |
3028 KB |
#include <bits/stdc++.h>
using namespace std;
#define V 602
int m;
bool bfs(int rGraph[V][V], int s, int t, int parent[]) {
bool visited[V];
memset(visited, 0, sizeof(visited));
queue<int> q;
q.push(s);
visited[s] = true;
parent[s] = -1;
while (!q.empty()) {
int u = q.front();
q.pop();
for (int v = 0; v < 2*m+2; v++) {
if (visited[v] == false && rGraph[u][v] > 0) {
if (v == t) {
parent[v] = u;
return true;
}
q.push(v);
parent[v] = u;
visited[v] = true;
}
}
}
return false;
}
int fordFulkerson(int graph[V][V], int s, int t) {
int u, v;
int rGraph[V][V];
for (u = 0; u < 2*m+2; u++)
for (v = 0; v < 2*m+2; v++)
rGraph[u][v] = graph[u][v];
int parent[V];
int max_flow = 0;
while (bfs(rGraph, s, t, parent)) {
int path_flow = INT_MAX;
for (v = t; v != s; v = parent[v]) {
u = parent[v];
path_flow = min(path_flow, rGraph[u][v]);
}
for (v = t; v != s; v = parent[v]) {
u = parent[v];
rGraph[u][v] -= path_flow;
rGraph[v][u] += path_flow;
}
max_flow += path_flow;
}
return max_flow;
}
int main() {
int n;
cin >> n >> m;
vector<int> times(m+1);
vector<int> locations(m+1);
for (int i = 0; i < m; i++) cin >> times[i+1];
for (int i = 0; i < m; i++) cin >> locations[i+1];
int graph[V][V];
for (int i = 0; i < 2*m+2; i++) {
for (int j = 0; j < 2*m+2; j++) {
graph[i][j] = 0;
}
}
for (int i = 1; i < m+1; i++) {
graph[0][i] = 1;
graph[i+m][2*m+1] = 1;
}
for (int i = 1; i < m+1; i++) {
for (int j = 1; j < m+1; j++) {
if (times[i] > times[j]) continue;
else if (times[j]-times[i] < abs(locations[i]-locations[j])) continue;
else graph[i][j+m] = 1;
}
}
for (int i = 0; i < 2*m+2; i++) {
for (int j = 0; j < 2*m+2; j++) {
if (graph[i][j]) cout << i << " " << j << endl;
}
}
cout << m - fordFulkerson(graph, 0, 2*m+1) + 1;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
3028 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
3028 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
3028 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
3028 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
3028 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
3028 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
3028 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |