답안 #684394

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
684394 2023-01-21T05:51:52 Z mjhmjh1104 Ancient Machine (JOI21_ancient_machine) C++17
컴파일 오류
0 ms 0 KB

      
#include "Bruno.h"
#include <vector>
using namespace std;

bool b[100006];

void Bruno(int n, int l, vector<int> a) {
    vector<char> v;
    int lt = 0;
    while (lt < n && !a[lt]) Remove(lt++);
    for (int i = lt + 1; i < n; i++) if (a[i]) {
        Remove(i);
        b[i] = true;
    }
    for (int i = lt + 1; i < n; i++) if (!b[i]) Remove(i);
    if (lt < n) Remove(lt);
}

Compilation message

/usr/bin/ld: /tmp/ccGdzKwO.o: in function `main':
grader_anna.cpp:(.text.startup+0x14c): undefined reference to `Anna(int, std::vector<char, std::allocator<char> >)'
collect2: error: ld returned 1 exit status