Submission #601526

# Submission time Handle Problem Language Result Execution time Memory
601526 2022-07-22T07:07:11 Z 박상훈(#8471) Flight to the Ford (BOI22_communication) C++17
15 / 100
37 ms 1768 KB
#include "communication.h"
#include <bits/stdc++.h>
//
// --- Sample implementation for the task communication ---
//
// To compile this program with the sample grader, place:
//     communication.h communication_sample.cpp sample_grader.cpp
// in a single folder, then open the terminal in this directory (right-click onto an empty spot in the directory,
// left click on "Open in terminal") and enter e.g.:
//     g++ -std=c++17 communication_sample.cpp sample_grader.cpp
// in this folder. This will create a file a.out in the current directory which you can execute from the terminal
// as ./a.out
// See task statement or sample_grader.cpp for the input specification
//

using namespace std;
typedef long long ll;

void encode(int N, int X) {
    string s[4] = {"", "10", "11", "01"};

    bool flag = 0;
    for (int i=0;i<3;i++){
        if (!flag) flag = (((s[X][0]-'0')^1) != send((s[X][0]-'0') ^ 1));
        else{
            send(s[X][1]-'0');
            flag = 0;
        }
    }
}

std::pair<int, int> decode(int N) {
    vector<int> v;
    for (int i=0;i<3;i++){
        int x = receive();
        v.push_back(x);
        if (i && v[i-1]==v[i]){
            if (v[i]==1) return {2, 3};
            else return {1, 2};
        }
    }
    return {1, 3};
}
# Verdict Execution time Memory Grader output
1 Correct 5 ms 1740 KB Output is correct
2 Correct 10 ms 1680 KB Output is correct
3 Correct 10 ms 1684 KB Output is correct
4 Correct 8 ms 1708 KB Output is correct
5 Correct 13 ms 1700 KB Output is correct
6 Correct 20 ms 1768 KB Output is correct
7 Correct 37 ms 1704 KB Output is correct
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 328 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -