제출 #579643

#제출 시각아이디문제언어결과실행 시간메모리
579643JosiaArt Collections (BOI22_art)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h>

using namespace std;


int nPublic;


map<pair<int, int>, bool> dict;


bool compare(int a, int b) {
    if (dict.count({a, b})) return dict[{a, b}];

    vector<int> ask = {a};

    for (int i = 0; i<nPublic; i++) {
        if (i+1 == a || i+1 == b) continue;
        ask.push_back(i+1);
    }
    ask.push_back(b);


    // int AB = publish(ask);

    ask[0] = b;
    ask[nPublic-1] = a;
    // int BA = publish(ask);

    dict[{a, b}] = AB < BA;
    dict[{b, a}] = BA < AB;

    return AB < BA;
}



void solve(int n) {
    nPublic = n;
    vector<int> a;
    for (int i=0; i<n; i++) a.push_back(i+1);

    sort(a.begin(), a.end(), compare);

    answer(a);
}



// signed main() {
//     cin.tie(0);
//     ios_base::sync_with_stdio(0);

//     int n; cin >> n;

//     deque<int> a(n);

//     for (int i = 0; i<n; i++) cin >> a[i];

//     for (int i = 0; i<n; i++) {
//         int cnt = 0;
//         for (int i = 0; i<n; i++) {
//             for (int j = i+1; j<n; j++) {
//                 if (a[i]>a[j]) cnt++;
//             }
//         }
//         a.push_back(a[0]);
//         a.pop_front();
//         cout << cnt << "\n";
//     }

//     return 0;
// }

컴파일 시 표준 에러 (stderr) 메시지

art.cpp: In function 'bool compare(int, int)':
art.cpp:30:20: error: 'AB' was not declared in this scope
   30 |     dict[{a, b}] = AB < BA;
      |                    ^~
art.cpp:30:25: error: 'BA' was not declared in this scope
   30 |     dict[{a, b}] = AB < BA;
      |                         ^~
art.cpp: In function 'void solve(int)':
art.cpp:45:5: error: 'answer' was not declared in this scope
   45 |     answer(a);
      |     ^~~~~~
interface.cpp: In function 'int publish(std::vector<int>)':
interface.cpp:20:17: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   20 |     if(v.size() != N) {
      |        ~~~~~~~~~^~~~
interface.cpp: In function 'void answer(std::vector<int>)':
interface.cpp:36:17: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   36 |     if(v.size() != N) {
      |        ~~~~~~~~~^~~~