# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
54743 |
2018-07-05T00:07:26 Z |
ksun48 |
Park (JOI17_park) |
C++14 |
|
197 ms |
960 KB |
#include <bits/stdc++.h>
#include "park.h"
using namespace std;
int P[1400];
int ask(int a, int b){
if(P[a] == 0 || P[b] == 0) return 0;
if(a == b) return 1;
return Ask(min(a,b), max(a,b), P);
}
void found(int a, int b){
Answer(min(a,b), max(a,b));
}
void solve1(int n){
for(int i = 0; i < n; i++){
P[i] = 0;
}
for(int i = 0; i < n; i++){
for(int j = i+1; j < n; j++){
P[i] = P[j] = 1;
if(ask(i,j)){
found(i,j);
}
P[i] = P[j] = 0;
}
}
}
int check_edge(int a, int b, int n){
if(a == b) return 0;
for(int i = 0; i < n; i++){
P[i] = 0;
}
P[a] = P[b] = 1;
return ask(a, b);
}
int check_subtree(int a, int b, int c, int n){
// a-b is an edge, check if x == b or x is in b's side
for(int i = 0; i < n; i++){
P[i] = 1;
}
P[b] = 0;
if(ask(a,c)){
return 0;
}
return 1;
}
void solvetree(vector<int> v, int n){
if(v.size() <= 1) return;
while(1){
int a = v[rand() % v.size()];
int b = v[rand() % v.size()];
if(!check_edge(a, b, n)){
continue;
}
found(a,b);
vector<int> v1;
vector<int> v2;
for(int x : v){
if(check_subtree(a, b, x, n)){
v1.push_back(x);
} else {
v2.push_back(x);
}
}
solvetree(v1, n);
solvetree(v2, n);
assert(v1.size() < v.size() && v2.size() < v.size());
return;
}
}
void solvetreev(vector<int> v, int n){
if(v.size() <= 1) return;
int a = v[rand() % v.size()];
vector<pair<int, vector<int> > > children;
for(int x : v){
if(check_edge(a, x, n)){
found(a,x);
children.push_back({x, vector<int>()});
}
}
for(int x : v){
if(x == a) continue;
random_shuffle(children.begin(), children.end());
for(int i = 0; i < children.size(); i++){
if(i + 1 == children.size() || check_subtree(a, children[i].first, x, n)){
children[i].second.push_back(x);
break;
}
}
}
for(int i = 0; i < children.size(); i++){
solvetreev(children[i].second, n);
}
return;
}
void solve2(int n){
vector<int> v;
for(int i = 0; i < n; i++){
v.push_back(i);
}
solvetreev(v, n);
}
void Detect(int T, int N) {
srand(48);
if(T == 1){
solve1(N);
} else if(T >= 2){
solve2(N);
}
}
Compilation message
park.cpp: In function 'void solvetreev(std::vector<int>, int)':
park.cpp:92:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i = 0; i < children.size(); i++){
~~^~~~~~~~~~~~~~~~~
park.cpp:93:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if(i + 1 == children.size() || check_subtree(a, children[i].first, x, n)){
~~~~~~^~~~~~~~~~~~~~~~~~
park.cpp:99:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i = 0; i < children.size(); i++){
~~^~~~~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Correct |
8 ms |
488 KB |
Output is correct |
3 |
Correct |
8 ms |
496 KB |
Output is correct |
4 |
Correct |
8 ms |
496 KB |
Output is correct |
5 |
Correct |
8 ms |
496 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
188 ms |
572 KB |
Output is correct |
2 |
Correct |
149 ms |
700 KB |
Output is correct |
3 |
Correct |
141 ms |
700 KB |
Output is correct |
4 |
Correct |
196 ms |
960 KB |
Output is correct |
5 |
Correct |
197 ms |
960 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
196 ms |
960 KB |
Wrong Answer[5] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
191 ms |
960 KB |
Wrong Answer[5] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
166 ms |
960 KB |
Wrong Answer[6] |
2 |
Halted |
0 ms |
0 KB |
- |