Submission #165783

# Submission time Handle Problem Language Result Execution time Memory
165783 2019-11-28T19:08:33 Z nikatamliani Vision Program (IOI19_vision) C++14
Compilation error
0 ms 0 KB
//# include <"vision.h";
# include <bits/stdc++.h>
using namespace std;
int get(int H, int W, int K){
	vector < int > x[500], y[500], x1, y1, x2, y2, res;
	for(int i = 0; i < H; i ++){
		for(int j = 0; j < W; j ++){
			x[i + j].push_back(i * W + j);
			y[i - j + W - 1].push_back(i * W + j);
		}
	}
	for(int i = 0; i <= H + W - 2; i ++){
		x1.push_back(add_or(x[i]));
		y1.push_back(add_or(y[i]));
		x2.push_back(add_or(x1));
		y2.push_back(add_or(y1));
		if(i >= K){
			res.push_back(add_and(x1[i], x2[i - K]));
			res.push_back(add_and(y1[i], y2[i - K])); 
		}
	}
	return add_or(res);
}
void construct_network(int H, int W, int K){
	if(H + W - 2 > K){
		add_xor(get(H, W, K), get(H, W, K + 1)); 
	} else{
		get(H, W, K);
	}
}

Compilation message

vision.cpp: In function 'int get(int, int, int)':
vision.cpp:13:16: error: 'add_or' was not declared in this scope
   x1.push_back(add_or(x[i]));
                ^~~~~~
vision.cpp:13:16: note: suggested alternative: 'rand_r'
   x1.push_back(add_or(x[i]));
                ^~~~~~
                rand_r
vision.cpp:18:18: error: 'add_and' was not declared in this scope
    res.push_back(add_and(x1[i], x2[i - K]));
                  ^~~~~~~
vision.cpp:22:9: error: 'add_or' was not declared in this scope
  return add_or(res);
         ^~~~~~
vision.cpp:22:9: note: suggested alternative: 'rand_r'
  return add_or(res);
         ^~~~~~
         rand_r
vision.cpp: In function 'void construct_network(int, int, int)':
vision.cpp:26:3: error: 'add_xor' was not declared in this scope
   add_xor(get(H, W, K), get(H, W, K + 1)); 
   ^~~~~~~