답안 #590015

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
590015 2022-07-05T13:09:23 Z drkarlicio2107 Art Collections (BOI22_art) C++17
컴파일 오류
0 ms 0 KB
#include <bits/stdc++.h>
#include "art.h"
using namespace std; vector <int> L; vector <int> ans;
int publish ( vector <int> R){
	for (int i=0; i<R.size(); i++) cout << R [i] << " ";
	cout << endl;
	int re; cin >> re;
	return re;
}
void answer ( vector <int> R){
	for (int i=0; i<R.size(); i++) cout << R [i] << " ";
	cout << endl;
	return ;
}
int pos [5000];
void solve (int N){
	int last=-1;
	for (int i=N+1; i>1; i--){
		L.clear ();
		for (int j=i; j<N+1; j++) L.push_back (j);
		for (int j=1; j<i; j++) L.push_back (j);
		int ans=publish (L);
		if (last==-1){
			last=ans; continue;
		}
		pos [(N-1+ans-last)/2]=i; last=ans;
	}
	for (int i=0; i<N; i++){
		if (pos [i]==0) ans.push_back (1);
		else ans.push_back (pos [i]);
	}
	answer (ans);
	return ;
}
int main (){
	int n; cin >> n;
	solve (n);
	return 0;
}

Compilation message

art.cpp: In function 'int publish(std::vector<int>)':
art.cpp:5:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
    5 |  for (int i=0; i<R.size(); i++) cout << R [i] << " ";
      |                ~^~~~~~~~~
art.cpp: In function 'void answer(std::vector<int>)':
art.cpp:11:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   11 |  for (int i=0; i<R.size(); i++) cout << R [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) {
      |        ~~~~~~~~~^~~~
/usr/bin/ld: /tmp/ccQUMAvW.o: in function `publish(std::vector<int, std::allocator<int> >)':
interface.cpp:(.text+0x60): multiple definition of `publish(std::vector<int, std::allocator<int> >)'; /tmp/ccGj6iYZ.o:art.cpp:(.text+0x0): first defined here
/usr/bin/ld: /tmp/ccQUMAvW.o: in function `answer(std::vector<int, std::allocator<int> >)':
interface.cpp:(.text+0x170): multiple definition of `answer(std::vector<int, std::allocator<int> >)'; /tmp/ccGj6iYZ.o:art.cpp:(.text+0x120): first defined here
/usr/bin/ld: /tmp/ccQUMAvW.o: in function `main':
interface.cpp:(.text.startup+0x0): multiple definition of `main'; /tmp/ccGj6iYZ.o:art.cpp:(.text.startup+0x0): first defined here
collect2: error: ld returned 1 exit status