Submission #54763

#TimeUsernameProblemLanguageResultExecution timeMemory
54763spencercomptonPark (JOI17_park)C++17
Compilation error
0 ms0 KiB
#include "park.h" #include <bits/stdc++.h> using namespace std; bool in[1400]; static int place[1400]; vector<int> post; vector<int> adj[1400]; vector<bool> v; int n; void dfs(int now){ v[now] = true; post.push_back(now); for(int i = 0; i<adj[now].size(); i++){ int to = adj[now][i]; if(!v[to]){ dfs(to); } } } void from(int a, int b){ if(b<a){ swap(a,b); } // cout << "FROM " << a << " " << b << endl; for(int i = 0; i<n; i++){ place[i] = 0; } place[a] = 1; place[b] = 1; // cout << "P1 " << a << " " << b << endl; // for(int i = 0; i<n; i++){ // cout << place[i] << " " ; // } // cout << endl; if(Ask(a,b,place)==1){ // cout << "OK " << endl; Answer(a,b); in[a] = true; in[b] = true; adj[a].push_back(b); adj[b].push_back(a); return; } // cout << "NOPE " << endl; vector<int> outside; for(int i = 0; i<n; i++){ if(!in[i] && i!=a && i!=b){ outside.push_back(i); } } int low = 0; int high = (int)outside.size()-1; while(low<high){ int mid = (low+high)/2; for(int i = 0; i<n; i++){ place[i] = 1; } for(int i = 0; i<=mid; i++){ place[outside[i]] = 1; } for(int i = mid+1; i<(int)outside.size(); i++){ place[outside[i]] = 0; } if(Ask(a,b,place)==1){ high = mid; } else{ low = mid+1; } } from(a,outside[low]); from(outside[low],b); } void Detect(int T, int N) if(T==1){ for(int i = 0; i<N; i++){ place[i] = 0; } for(int i = 0; i<N; i++){ for(int j = i+1; j<N; j++){ place[i] = 1; place[j] = 1; if(Ask(i,j,place)==1){ Answer(i,j); } place[i] = 0; place[j] = 0; } } return; } if(T==5){ return; } n = N; for(int i = 0; i<N; i++){ place[i] = 0; } for(int i = 0; i<N; i++){ in[i] = false; } in[0] = true; for(int i = 1; i<N; i++){ // cout << "X " << i << " " << N << endl; if(in[i]){ continue; } v.clear(); v.resize(N); post.clear(); dfs(0); vector<int> possible; for(int j = 0; j<post.size(); j++){ possible.push_back(post[j]); } // cout << "A " << endl; // for(int j = 0; j<(int)possible.size(); j++){ // cout << possible[j] << " " ; // } // cout << "B "<< endl; while(possible.size()>1){ vector<int> a; vector<int> b; for(int j = 0; j<N; j++){ place[j] = 1; } for(int j = 0; j<(int)possible.size()/2; j++){ a.push_back(possible[j]); } for(int j = (int)possible.size()/2; j<(int)possible.size(); j++){ b.push_back(possible[j]); place[possible[j]] = 0; } // cout << "BEF " << endl; // for(int j = 0; j<a.size(); j++){ // cout << a[j] << " "; // } // cout << endl; // for(int j = 0; j<b.size(); j++){ // cout << b[j] << " "; // } // cout << endl; // for(int j = 0; j<N; j++){ // cout << place[j] << " "; // } // cout << endl; int xx = a[0]; int yy = i; if(xx>yy){ swap(xx,yy); } if(Ask(xx,yy,place)==1){ possible = a; } else{ possible = b; } // cout << "AFT " << endl; } assert((int)possible.size()==1); from(possible[0],i); } }

Compilation message (stderr)

park.cpp: In function 'void dfs(int)':
park.cpp:14:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for(int i = 0; i<adj[now].size(); i++){
                 ~^~~~~~~~~~~~~~~~
park.cpp: At global scope:
park.cpp:76:2: error: expected initializer before 'if'
  if(T==1){
  ^~
park.cpp:93:2: error: expected unqualified-id before 'if'
  if(T==5){
  ^~
park.cpp:96:2: error: 'n' does not name a type
  n = N;
  ^
park.cpp:97:2: error: expected unqualified-id before 'for'
  for(int i = 0; i<N; i++){
  ^~~
park.cpp:97:17: error: 'i' does not name a type
  for(int i = 0; i<N; i++){
                 ^
park.cpp:97:22: error: 'i' does not name a type
  for(int i = 0; i<N; i++){
                      ^
park.cpp:100:2: error: expected unqualified-id before 'for'
  for(int i = 0; i<N; i++){
  ^~~
park.cpp:100:17: error: 'i' does not name a type
  for(int i = 0; i<N; i++){
                 ^
park.cpp:100:22: error: 'i' does not name a type
  for(int i = 0; i<N; i++){
                      ^
park.cpp:103:2: error: 'in' does not name a type
  in[0] = true;
  ^~
park.cpp:104:2: error: expected unqualified-id before 'for'
  for(int i = 1; i<N; i++){
  ^~~
park.cpp:104:17: error: 'i' does not name a type
  for(int i = 1; i<N; i++){
                 ^
park.cpp:104:22: error: 'i' does not name a type
  for(int i = 1; i<N; i++){
                      ^
park.cpp:164:1: error: expected declaration before '}' token
 }
 ^