답안 #1099065

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1099065 2024-10-10T12:59:28 Z LIA Flight to the Ford (BOI22_communication) C++17
0 / 100
8 ms 332 KB
#include "communication.h"

void encode(int N, int X) {


    if (X == 1) {
        send(0);
        send(0);
    } else if (X == 2) {
        send(0);
        send(1);
    } else if (X == 3) {
        send(1);
        send(0);
    }

    send(0);
}

std::pair<int, int> decode(int N) {
    int signal1 = receive();
    int signal2 = receive();

    if (signal1 == 0 && signal2 == 0) {
        return {1, 1};
    } else if (signal1 == 0 && signal2 == 1) {
        return {2, 2};
    } else if (signal1 == 1 && signal2 == 0) {
        return {3, 3};
    }

    return {1, 1};
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 332 KB Not correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 8 ms 332 KB Not correct
2 Halted 0 ms 0 KB -