답안 #134437

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
134437 2019-07-22T16:44:31 Z thanos popa (BOI18_popa) C++14
0 / 100
2 ms 376 KB
#include<iostream>
#include<popa.h>
using namespace std;
int myway(int l,int r,int* Left,int* Right){
  if(l>r) return -1;
  if(l==r){
    Left[l]=-1;
    Right[l]=-1;
    return l;
  }
  int g=-1;
  for(int i=l; i<=r; i++){
    if(query(l,i-1,i+1,r)){
      Left[i]=myway(l,i-1,Left,Right);
      Right[i]=myway(i+1,r,Left,Right);
      break;
    }
  }
  return g;
}
int solve(int N,int* Left,int* Right){
  int h=-1;
  for(int i=0; i<N; i++){
    if(query(0,i-1,i+1,N-1)){
      h=i;
      break;
    }
  }
  myway(0,N,Left,Right);
  return h;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 376 KB invalid argument
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 376 KB invalid argument
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 376 KB invalid argument
2 Halted 0 ms 0 KB -