Submission #1093928

#TimeUsernameProblemLanguageResultExecution timeMemory
1093928Trisanu_DasMagic Show (APIO24_show)C++17
Compilation error
0 ms0 KiB
#include "Alice.h"
#include <bits/stdc++.h>
using namespace std;
 
 
vector<pair<int, int>> Alice() {
    int n = 5000;
    long long x = setN(n);
 
    vector<pair<int, int>> edges;
 
    for (int i = 1; i <= n; i++) {
        if (i == x) continue;
        edges.push_back({x, i});
    }
    return edges;
}

Compilation message (stderr)

/usr/bin/ld: /tmp/ccCgZjk1.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