Submission #954448

# Submission time Handle Problem Language Result Execution time Memory
954448 2024-03-28T00:07:01 Z __Davit__ Cave (IOI13_cave) C++17
0 / 100
1 ms 616 KB
#include "cave.h"
#include <bits/stdc++.h>

using namespace std;

namespace {


    int *subtask2(int 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;
//    for (int i = 0; i < N; i++)b[i] = i;
//    int x = tryCombination(a);

     
    answer(a, subtask2(a));
}

Compilation message

cave.cpp: In function 'int* {anonymous}::subtask2(int*)':
cave.cpp:10:24: warning: 'sizeof' on array function parameter 'a' will return size of 'int*' [-Wsizeof-array-argument]
   10 |         int n = sizeof(a) / sizeof(int);
      |                       ~^~
cave.cpp:9:23: note: declared here
    9 |     int *subtask2(int a[]) {
      |                   ~~~~^~~
cave.cpp:18:16: warning: address of local variable 'res' returned [-Wreturn-local-addr]
   18 |         return res;
      |                ^~~
cave.cpp:11:13: note: declared here
   11 |         int res[n];
      |             ^~~
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 616 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 604 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 348 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 348 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 616 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -