Submission #1093926

# Submission time Handle Problem Language Result Execution time Memory
1093926 2024-09-28T05:44:17 Z Trisanu_Das Magic Show (APIO24_show) C++17
Compilation error
0 ms 0 KB
#include "Alice.h"
using namespace std;
 
vector<pair<int, int>> Alice() {
    long long x = setN(5000);
    vector<pair<int,int>> tree;
    for (int i = 1; i <= 5000; i++)
        if (i != x)
            tree.push_back({i, x});
    return tree;
}



    

Compilation message

/usr/bin/ld: /tmp/cc3G9c8r.o: in function `main':
grader_bob.cpp:(.text.startup+0x324): undefined reference to `Bob(std::vector<std::pair<int, int>, std::allocator<std::pair<int, int> > >)'
collect2: error: ld returned 1 exit status