#include <bits/stdc++.h>
#include "park.h"
//#include "grader.cpp"
using namespace std;
static int Place[1400];
int n;
void solve1() {
for (int i = 0; i < n; i++) {
for (int j = i + 1; j < n; j++) {
Place[i] = Place[j] = 1;
if (Ask(i, j, Place)) {
Answer(i, j);
}
Place[i] = Place[j] = 0;
}
}
}
int used[1400];
int deg[1400];
void solve2() {
vector < int > vec(n);
iota(vec.begin(), vec.end(), 0);
random_shuffle(vec.begin(), vec.end());
for (int i = 0; i < n; i++) {
int a = vec[i];
if (deg[a] > 1) continue;
for (int j = 0; j < n; j++) {
int b = vec[j];
if (used[b]) continue;
if (deg[a] > 1) break;
Place[a] = Place[b] = 1;
bool fl = 0;
if (a > b) swap(a, b), fl = 1;
if (Ask(a, b, Place)) {
Answer(a, b);
deg[a]++;
deg[b]++;
used[a] = 1;
used[b] = 1;
}
if (fl) {
swap(a, b);
}
Place[a] = Place[b] = 0;
}
}
}
void Detect(int T, int N) {
srand(time(0));
n = N;
if (T == 1) {
solve1();
} else if (T == 2) {
solve2();
} else {
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Correct |
11 ms |
376 KB |
Output is correct |
3 |
Correct |
10 ms |
520 KB |
Output is correct |
4 |
Correct |
9 ms |
520 KB |
Output is correct |
5 |
Correct |
13 ms |
584 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
4 ms |
728 KB |
Wrong Answer[4] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
728 KB |
Wrong Answer[6] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
728 KB |
Wrong Answer[6] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
728 KB |
Wrong Answer[6] |
2 |
Halted |
0 ms |
0 KB |
- |