Submission #964423

# Submission time Handle Problem Language Result Execution time Memory
964423 2024-04-16T19:42:28 Z marinaluca Super Dango Maker (JOI22_dango3) C++17
Compilation error
0 ms 0 KB
#include "dango3.h"

#include <bits/stdc++.h>
using namespace std;
namespace{
  
int asa = 1;
void Solve (vector <int> v, int x){
    if (x == 1){
        Answer(v);
        return;
    }
    int mijl = x / 2;
    vector <int> rez;
    for (int i = v.size(); -- i;){
        swap (v[i], v.back());
        int y = v.back();
        v.pop_back();
        if (Query(v) < mijl)
            v.push_back(y);
        else
            rez.push_back(y);
    }
    Solve (v, mijl);
    Solve(rez, x - mijl);
}
}// namespace
 
void solve (int N, int M){
    vector <int> v;
    for (int i = 0; i < N * M; ++ i){
        v.push_back(1 + i);
    }
    Solve(v, M);
}
/**
signed main(void){
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);
    return 0 ^ 0;
}
**/

Compilation message

dango3.cpp:7:5: warning: '{anonymous}::asa' defined but not used [-Wunused-variable]
    7 | int asa = 1;
      |     ^~~
/usr/bin/ld: /tmp/ccfjEQGd.o: in function `main':
grader.cpp:(.text.startup+0x111): undefined reference to `Solve(int, int)'
collect2: error: ld returned 1 exit status