답안 #70083

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
70083 2018-08-22T10:23:43 Z octopuses popa (BOI18_popa) C++17
0 / 100
15 ms 412 KB
#include <bits/stdc++.h>
#include "popa.h"
#pragma GCC optimize("O3")

using namespace std;

int solve(int n, int* lt, int* rt)
{
  int root = 0;
  lt[0] = -1;
  rt[n - 1] = 1;
  for(int i = 1; i < n; ++ i)
    if(query(i - 1, i, i - 1, i - 1))
    {
      rt[i - 1] = i;
      lt[i] = -1;
    } else
    {
      lt[i] = root;
      rt[i - 1] = -1;
      root = i;
    }
}

Compilation message

popa.cpp: In function 'int solve(int, int*, int*)':
popa.cpp:23:1: warning: no return statement in function returning non-void [-Wreturn-type]
 }
 ^
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 248 KB not a valid binary tree
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 14 ms 384 KB not a valid binary tree
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 15 ms 412 KB not a valid binary tree
2 Halted 0 ms 0 KB -