Submission #278242

# Submission time Handle Problem Language Result Execution time Memory
278242 2020-08-21T11:25:32 Z petar_vitorac Vision Program (IOI19_vision) C++14
Compilation error
0 ms 0 KB
#include "vision.h"

#include<bits/stdc++.h>
using namespace std;


void construct_network(int H, int W, int K) {
	// TEST CASE 5
	vector<int> toor;
	
	for(int i = 0; i < max(H, W)-K; i++) {
		vector<int> toadd = {i, i+K};
		toor.push_back(toadd);
	}
	
	add_or(toor);
}

Compilation message

vision.cpp: In function 'void construct_network(int, int, int)':
vision.cpp:13:23: error: no matching function for call to 'std::vector<int>::push_back(std::vector<int>&)'
   13 |   toor.push_back(toadd);
      |                       ^
In file included from /usr/include/c++/9/vector:67,
                 from vision.h:5,
                 from vision.cpp:1:
/usr/include/c++/9/bits/stl_vector.h:1184:7: note: candidate: 'void std::vector<_Tp, _Alloc>::push_back(const value_type&) [with _Tp = int; _Alloc = std::allocator<int>; std::vector<_Tp, _Alloc>::value_type = int]'
 1184 |       push_back(const value_type& __x)
      |       ^~~~~~~~~
/usr/include/c++/9/bits/stl_vector.h:1184:35: note:   no known conversion for argument 1 from 'std::vector<int>' to 'const value_type&' {aka 'const int&'}
 1184 |       push_back(const value_type& __x)
      |                 ~~~~~~~~~~~~~~~~~~^~~
/usr/include/c++/9/bits/stl_vector.h:1200:7: note: candidate: 'void std::vector<_Tp, _Alloc>::push_back(std::vector<_Tp, _Alloc>::value_type&&) [with _Tp = int; _Alloc = std::allocator<int>; std::vector<_Tp, _Alloc>::value_type = int]'
 1200 |       push_back(value_type&& __x)
      |       ^~~~~~~~~
/usr/include/c++/9/bits/stl_vector.h:1200:30: note:   no known conversion for argument 1 from 'std::vector<int>' to 'std::vector<int>::value_type&&' {aka 'int&&'}
 1200 |       push_back(value_type&& __x)
      |                 ~~~~~~~~~~~~~^~~