답안 #873008

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
873008 2023-11-14T09:51:58 Z Faisal_Saqib Art Collections (BOI22_art) C++17
컴파일 오류
0 ms 0 KB
#include "art.h"
#include <iostream>
#include <algorithm>
#include <climits>
#include <queue>
#include <cmath>
#include <map>
#include <set>
#include <random>
#include <chrono>
#include <iomanip>
#include <vector>
#include <fstream>
using namespace std;
#define vll vector<ll>
#define sll set<ll>
#define vstr vector<string>
#define ll long long
#define ld long double
#define supra main
#define pb push_back
#define add insert
#define rall(x) rbegin(x),rend(x)
#define all(x) (x).begin(),(x).end()
#define I ios_base::sync_with_stdio(false);
#define Hear cin.tie(NULL);
#define Shots cout.tie(NULL);
#define Ratatatata
#define bits_on(a) (__builtin_popcountll(a))
#define mx_pw2(a) (__builtin_ctzll(a))
mt19937 RNG(chrono::steady_clock::now().time_since_epoch().count());  
#define SHUFFLE(v) shuffle(all(v), RNG); 
void solve(int N)
{
    vll order;
    for(int i=1;i<=n;i++)
        order.pb(i);
    do
    {
        if(!publish(order))
        {
            answer(order);
        }
    }while(next_permutation(all(order)));
}

Compilation message

art.cpp: In function 'void solve(int)':
art.cpp:36:20: error: 'n' was not declared in this scope
   36 |     for(int i=1;i<=n;i++)
      |                    ^
art.cpp:40:21: error: could not convert 'order' from 'vector<long long int>' to 'vector<int>'
   40 |         if(!publish(order))
      |                     ^~~~~
      |                     |
      |                     vector<long long int>
art.cpp:42:20: error: could not convert 'order' from 'vector<long long int>' to 'vector<int>'
   42 |             answer(order);
      |                    ^~~~~
      |                    |
      |                    vector<long long int>
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) {
      |        ~~~~~~~~~^~~~