Submission #770509

#TimeUsernameProblemLanguageResultExecution timeMemory
770509TymondCave (IOI13_cave)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
using namespace std;

void answer(int S[], int D[]);

int tryCombination(int S[]);

void exploreCave(int n){
    int S[n];
    for(int i = 0; i <= n - 1; i++){
        S[i] = 0;
    }
    
    for(int  i = 0; i <= n - 1; i++){
        int kture = tryCombination(S);
        if(kture == i){
            continue;
        }
        for(int j  = 0; j <= n - 1; j++){
            if(S[j] == 0){
                S[j] = 1;
                int kture = tryCombination(S);
                if(kture == i){
                    continue;
                }
                S[j] = 0;
            }else{
                S[j] = 0;
                int kture = tryCombination(S);
                if(kture == i){
                    continue;
                }
                S[j] = 1;
            }
        }
    }
    
    int D[n];
    for(int i = 0; i <= n - 1; i++){
        if(S[i] == 0){
            S[i] = 1;
            int kture = tryCombination(S);
            D[i] = kture;
            S[i] = 0;
        }else{
            S[i] = 0;
            int kture = tryCombination(S);
            D[i] = kture;
            S[i] = 1;
        }
    }
    
    answer(S, D);
}

int main(){
    ios_base::sync_with_stido(0);
    cin.tie(0);
    cout.tie(0);
    
    /*int n;
    cin >> n;
    
    exploreCave(n);
    */
}

Compilation message (stderr)

cave.cpp:4:30: warning: `\U0000037e' is not in NFC [-Wnormalized=]
    4 | void answer(int S[], int D[]);
      |                              ^
cave.cpp:6:28: warning: `\U0000037e' is not in NFC [-Wnormalized=]
    6 | int tryCombination(int S[]);
      |                            ^
cave.cpp:4:30: error: expected initializer before '\U0000037e'
    4 | void answer(int S[], int D[]);
      |                              ^
cave.cpp: In function 'int main()':
cave.cpp:57:15: error: 'sync_with_stido' is not a member of 'std::ios_base'
   57 |     ios_base::sync_with_stido(0);
      |               ^~~~~~~~~~~~~~~