Submission #1091011

#TimeUsernameProblemLanguageResultExecution timeMemory
1091011AndreasK동굴 (IOI13_cave)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
#include "cave.h"
using namespace std;
 
void exploreCave(int N) {
    int A[N] = {};
    int B[N];
    for (int c = 0; c < N; c++)
        A[c] = c + 1;
    int x;
  	x=tryCombination(A);
    while (x != -1) {
        A[x - 1] = 1;
        x = tryCombination(A);
    }
    answer(A, B);
}

Compilation message (stderr)

cave.cpp:11:23: warning: `\U0000037e' is not in NFC [-Wnormalized=]
   11 |    x=tryCombination(A);
      |                       ^
cave.cpp:14:30: warning: `\U0000037e' is not in NFC [-Wnormalized=]
   14 |         x = tryCombination(A);
      |                              ^
cave.cpp: In function 'void exploreCave(int)':
cave.cpp:11:23: error: expected ';' before '\U0000037e'
   11 |    x=tryCombination(A);
      |                       ^
      |                       ;