답안 #1087436

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1087436 2024-09-12T17:51:56 Z juicy 보물 찾기 (CEOI13_treasure2) C++17
컴파일 오류
0 ms 0 KB
#include "treasure.h"

#include <bits/stdc++.h>

using namespace std;

#ifdef LOCAL
#include "debug.h"
#else
#define debug(...) 42
#endif

mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());

void rec(int a, int b, int c, int d, int cnt) {
  if (tie(a, b) == tie(c, d)) {
    Report(a, b);
    return;
  }
  if (rng() % 2 && a != c) {
    int m = (a + c) / 2;
    int x = countTreasure(a, b, m, d);
    if (x) {
      rec(a, b, m, d, x);
    }
    if (x < cnt) {
      rec(m + 1, b, c, d, cnt - x);
    }
  } else {
    int m = (b + d) / 2;
    int x = countTreasure(a, b, c, m);
    if (x) {
      rec(a, b, c, m, x);
    }
    if (x < cnt) {
      rec(a, m + 1, c, d, cnt - x);
    } 
  }
}

void findTreasure (int n) {
  rec(1, 1, n, n);
}

Compilation message

treasure.cpp: In function 'void findTreasure(int)':
treasure.cpp:42:17: error: too few arguments to function 'void rec(int, int, int, int, int)'
   42 |   rec(1, 1, n, n);
      |                 ^
treasure.cpp:15:6: note: declared here
   15 | void rec(int a, int b, int c, int d, int cnt) {
      |      ^~~