Submission #228746

#TimeUsernameProblemLanguageResultExecution timeMemory
228746jhtanCave (IOI13_cave)C++14
Compilation error
0 ms0 KiB
#include "cave.h"

using namespace std;

void exploreCave(int N) {
    int S[N];
    int D[N];

    // 12 points
    /*for(int i=0; i<N; i++) {
        S[i] = 0;
        D[i] = i;
    } 

    for(int i=0; i<N; i++) {
        int x = tryCombination(S);
        if(x == -1) break;
        if(x == i) S[i] = 1;
    }

    answer(S, D);*/

    memset(S, 0, sizeof(S));

    for(int i=0; i<N; i++) {
        S[i] = 1;
        D[tryCombination(S)] = i;
        S[i] = 0;
    }

    answer(S, D);
}

Compilation message (stderr)

cave.cpp: In function 'void exploreCave(int)':
cave.cpp:23:5: error: 'memset' was not declared in this scope
     memset(S, 0, sizeof(S));
     ^~~~~~