제출 #1120395

#제출 시각아이디문제언어결과실행 시간메모리
1120395vjudge1Art Collections (BOI22_art)C++17
컴파일 에러
0 ms0 KiB
#include<bits/stdc++.h>
#include "art.h"
using namespace std;
void solve(int n) {
	cin >> n;
	vector <int> v, v2;
	for(int i = 1; i <= n; i++) {
		v.pb(i);
	}
	v2 = v;
	reverse(v2.begin(), v2.end());
	while(v != v2) {
		cout << "publish({";
		for(auto to : v) {
			cout << to << ","; 
		}
		cout << "})\n";
		int res;
		cin >> res;
		if(res == 0) {
			cout << "answer({";
			for(auto to : v) {
				cout << to << ","; 
			}
			cout << "})";
			return;
		}
		next_permutation(v.begin(), v.end());
	}
	cout << "publish({";
	for(auto to : v) {
		cout << to << ","; 
	}
	cout << "})\n";
	int res;
	cin >> res;
	if(res == 0) {
		cout << "answer({";
		for(auto to : v) {
			cout << to << ","; 
		}
		cout << "})";
		return;
	}
}

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

art.cpp: In function 'void solve(int)':
art.cpp:8:5: error: 'class std::vector<int>' has no member named 'pb'
    8 |   v.pb(i);
      |     ^~
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) {
      |        ~~~~~~~~~^~~~