Submission #1223563

#TimeUsernameProblemLanguageResultExecution timeMemory
1223563islam_2010Cluedo (IOI10_cluedo)C++20
Compilation error
0 ms0 KiB
#include "clue/do.h"
#include <bits/stdc++.h>
using namespace std;

int Theory(int a, int b, int c);



void solve(){
    int f, s, t;
    for(int i = 1; i <= 6; i++){
        int a = Theory(i, 1, 1);
        if(a==0){
            return;
        }
        if(a!=1){
            f = a;
            break;
        }
    }for(int i = 1; i <= 10; i++){
        int a = Theory(f, i, 1);
        if(a==0){
            return;
        }
        if(a!=2){
            s = i;
            break;
        }
    }for(int i = 1; i <= 6; i++){
        int a = Theory(f, s, i);
        if(a==0){
            return;
        }
        if(a!=3){
            t = i;
            break;
        }
    }
}

Compilation message (stderr)

cluedo.cpp:1:10: fatal error: clue/do.h: No such file or directory
    1 | #include "clue/do.h"
      |          ^~~~~~~~~~~
compilation terminated.