Submission #954446

#TimeUsernameProblemLanguageResultExecution timeMemory
954446__Davit__동굴 (IOI13_cave)C++17
0 / 100
2 ms460 KiB
#include "cave.h"
#include <bits/stdc++.h>

using namespace std;

namespace {


    int *subtask2(int a[]) {
        return a;
        int n = sizeof(a) / sizeof(int);
        int res[n];
        for (int i = 0; i < n; i++) {
            a[i] ^= 1;
            int x = tryCombination(a);
            a[i] ^= 1;
            res[i] = x;
        }
        return res;
    }
}

void exploreCave(int N) {
    int a[N];
    for (int i = 0; i < N; i++)a[i] = 0;
    int *b = subtask2(a);
//    for (int i = 0; i < N; i++)b[i] = i;
//    int x = tryCombination(a);

    answer(a, b);
}

Compilation message (stderr)

cave.cpp: In function 'int* {anonymous}::subtask2(int*)':
cave.cpp:11:24: warning: 'sizeof' on array function parameter 'a' will return size of 'int*' [-Wsizeof-array-argument]
   11 |         int n = sizeof(a) / sizeof(int);
      |                       ~^~
cave.cpp:9:23: note: declared here
    9 |     int *subtask2(int a[]) {
      |                   ~~~~^~~
cave.cpp:19:16: warning: address of local variable 'res' returned [-Wreturn-local-addr]
   19 |         return res;
      |                ^~~
cave.cpp:12:13: note: declared here
   12 |         int res[n];
      |             ^~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...