제출 #1223563

#제출 시각아이디문제언어결과실행 시간메모리
1223563islam_2010Cluedo (IOI10_cluedo)C++20
컴파일 에러
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;
        }
    }
}

컴파일 시 표준 에러 (stderr) 메시지

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