답안 #1093928

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1093928 2024-09-28T05:48:40 Z Trisanu_Das 마술쇼 (APIO24_show) C++17
컴파일 오류
0 ms 0 KB
#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

/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