답안 #612715

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
612715 2022-07-29T21:45:45 Z morete Vision Program (IOI19_vision) C++17
컴파일 오류
0 ms 0 KB
#include<bits/stdc++.h>
using namespace std;
void construct_network(int H, int W, int K) {
	int ct = 0;
	
		for(int i = 0; i + K < max(W, H); i++){
			add_and({i, i + K});
			ct++;
		}
	vector<int> v;
	for(int i = H*W; i < H*W + ct; i++) v.push_back(i);
	add_or(v);
}

Compilation message

vision.cpp: In function 'void construct_network(int, int, int)':
vision.cpp:7:4: error: 'add_and' was not declared in this scope
    7 |    add_and({i, i + K});
      |    ^~~~~~~
vision.cpp:12:2: error: 'add_or' was not declared in this scope
   12 |  add_or(v);
      |  ^~~~~~