Submission #930021

# Submission time Handle Problem Language Result Execution time Memory
930021 2024-02-18T09:00:02 Z sofiefu Ancient Machine 2 (JOI23_ancient2) C++17
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
#include "ancient2.h"
using namespace std;
typedef long long ll;

#define int long long
#define vo vector
#define fi first
#define pb push_back
#define se second
#define pr(x) cerr << #x << " " << x << endl;
#define sz(x) x.size()
typedef vo<int> vi;
typedef pair<int, int> pii; 

#define rep(i, a, b) for(ll i = (a); i<(b); i++)
ll const inf = LLONG_MAX, mxn = 51;

std::string Solve(int n){
    string ans;
    rep(i, 0, 1000){
        int ret = Query(2, {0, 0}, {1, 1});
        if(ret==0){
            ans.pb('0');
        }
        else{
            ans.pb('1');
        }
    }

    return ans;
}

Compilation message

/usr/bin/ld: /tmp/ccO5nLSK.o: in function `main':
stub.cpp:(.text.startup+0xaa): undefined reference to `Solve[abi:cxx11](int)'
collect2: error: ld returned 1 exit status