Submission #945437

# Submission time Handle Problem Language Result Execution time Memory
945437 2024-03-13T19:24:13 Z codefox Cave (IOI13_cave) C++14
0 / 100
74 ms 524 KB
#include<bits/stdc++.h>
#include "cave.h"

using namespace std;

const int M = 1<<13;

void exploreCave(int N) {
    int b[N];
    int ans[N];

    for (int i = 0; i < N; i++)
    {
        b[i] = 0;
        ans[i] = -1;
    }

    int f = tryCombination(b);
    for (int i = 0; i < N; i++)
    {
        if (f !=i)
        {
            for (int j = 0; j < N; j++)
            {
                if (ans[j]==-1) b[j] = 1-b[j];
            }            
        }
        int curr = 0;
        for (int j = 12; j >= 0; j--)
        {
            for (int k = curr; k < curr + 1<<j && k <N; k++)
            {
                if (ans[k]==-1) b[k] = 1-b[k];
            }
            int h = tryCombination(b);
            for (int k = curr; k < curr + 1<<j && k <N; k++)
            {
                if (ans[k]==-1) b[k] = 1-b[k];
            }
            if (h != i) continue;
            curr += 1<<j;
        }
        b[curr] = 1-b[curr];
        ans[curr] = i;
        f = tryCombination(b);
    }
    answer(b, ans);
}

Compilation message

cave.cpp: In function 'void exploreCave(int)':
cave.cpp:31:41: warning: suggest parentheses around '+' inside '<<' [-Wparentheses]
   31 |             for (int k = curr; k < curr + 1<<j && k <N; k++)
      |                                    ~~~~~^~~
cave.cpp:36:41: warning: suggest parentheses around '+' inside '<<' [-Wparentheses]
   36 |             for (int k = curr; k < curr + 1<<j && k <N; k++)
      |                                    ~~~~~^~~
# Verdict Execution time Memory Grader output
1 Incorrect 57 ms 524 KB Answer is wrong
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 74 ms 348 KB too much calls on tryCombination()
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 0 ms 344 KB Output is correct
3 Correct 0 ms 348 KB Output is correct
4 Correct 0 ms 348 KB Output is correct
5 Incorrect 1 ms 348 KB Answer is wrong
6 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 0 ms 344 KB Output is correct
3 Correct 0 ms 348 KB Output is correct
4 Correct 0 ms 348 KB Output is correct
5 Incorrect 1 ms 348 KB Answer is wrong
6 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 57 ms 524 KB Answer is wrong
2 Halted 0 ms 0 KB -