Submission #617903

# Submission time Handle Problem Language Result Execution time Memory
617903 2022-08-01T16:45:47 Z Minindu2006 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)
{
	vector<int> kDis;
	for (int x = 0; x < H; x++)
	{
		for (int y = 0; y < W; y++)
		{
			if (abs(x - 0) + abs(y - 0) == K)
				kDis.push_back(x * W + y);
		}
	}
	add_and({0, add_or(kDis)})
}

Compilation message

vision.cpp: In function 'void construct_network(int, int, int)':
vision.cpp:16:28: error: expected ';' before '}' token
   16 |  add_and({0, add_or(kDis)})
      |                            ^
      |                            ;
   17 | }
      | ~