Submission #483275

#TimeUsernameProblemLanguageResultExecution timeMemory
483275MohamedAliSaidaneCave (IOI13_cave)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
#inclde "cave.h"
using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
typedef vector<int> vi;
typedef vector<ll> vll;

#define pb push_back
#define pop pop_back
#define ff first
#define ss second

const ll MOD = 1e9 + 7;
const ll INF = 1e18;

int n;

void exploreCave(int N)
{
    n = N;
    vll cb(n,0);
    ll u = tryCombination(cb);
    vll d; d.assign(n,0);
    bool visited[n];
    ll cnt = 0;
    memset(visited,false,sizeof(visited));
    while(cnt < n)
    {
        for(int i = 0; i<n; i ++)
        {
            if(visited[i])
                continue;
            cb[i] = 1;
            ll um = tryCombination(cb);
            if(um < u)
            {
                visited[i] = true;
                cb[i] = 0;
                d[um] = i;
                cnt ++;
            }
            else if(um > u)
            {
                visited[i] = true;
                d[um] = i;
                u = um;
                cnt ++;
            }
            else
                cb[i] = 0;
        }
    }
    answer(cb,d);
    return ;
}

Compilation message (stderr)

cave.cpp:2:2: error: invalid preprocessing directive #inclde; did you mean #include?
    2 | #inclde "cave.h"
      |  ^~~~~~
      |  include
cave.cpp: In function 'void exploreCave(int)':
cave.cpp:26:12: error: 'tryCombination' was not declared in this scope
   26 |     ll u = tryCombination(cb);
      |            ^~~~~~~~~~~~~~
cave.cpp:57:5: error: 'answer' was not declared in this scope
   57 |     answer(cb,d);
      |     ^~~~~~