답안 #1016479

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1016479 2024-07-08T06:38:19 Z MohamedFaresNebili The Collection Game (BOI21_swaps) C++14
컴파일 오류
0 ms 0 KB
#include <bits/stdc++.h>
     
     
            using namespace std;
     
            bool cmp(int i, int j) {
                schedule(i, j);
                vector<int> K = visit();
                return K[0] == 1;
            }
     
            void solve(int N, int V) {
                vector<int> res(N);
                for(int l = 0; l < N; l++)
                    res[l] = l + 1;
                sort(res.begin(), res.end(), cmp);
                answer(res);
            }

Compilation message

swaps.cpp: In function 'bool cmp(int, int)':
swaps.cpp:7:17: error: 'schedule' was not declared in this scope
    7 |                 schedule(i, j);
      |                 ^~~~~~~~
swaps.cpp:8:33: error: 'visit' was not declared in this scope
    8 |                 vector<int> K = visit();
      |                                 ^~~~~
swaps.cpp:8:33: note: 'std::visit' is only available from C++17 onwards
swaps.cpp: In function 'void solve(int, int)':
swaps.cpp:17:17: error: 'answer' was not declared in this scope
   17 |                 answer(res);
      |                 ^~~~~~