lang.cpp:1:1: error: 'include' does not name a type; did you mean '__has_include'?
include <bits/stdc++.h>
^~~~~~~
__has_include
lang.cpp: In function 'void excerpt(int*)':
lang.cpp:17:2: error: 'map' was not declared in this scope
map<int, bool> aparece;
^~~
lang.cpp:17:6: error: expected primary-expression before 'int'
map<int, bool> aparece;
^~~
lang.cpp:20:3: error: 'aparece' was not declared in this scope
aparece[E[i-1]] = 1;
^~~~~~~
lang.cpp:27:3: error: 'set' was not declared in this scope
set<int> dist;
^~~
lang.cpp:27:7: error: expected primary-expression before 'int'
set<int> dist;
^~~
lang.cpp:30:8: error: 'aparece' was not declared in this scope
if (aparece[ant[i][j]])
^~~~~~~
lang.cpp:31:5: error: 'dist' was not declared in this scope
dist.insert(ant[i][j]);
^~~~
lang.cpp:31:5: note: suggested alternative: 'int'
dist.insert(ant[i][j]);
^~~~
int
lang.cpp:33:12: error: 'dist' was not declared in this scope
if ((int)dist.size() > mx_ig)
^~~~
lang.cpp:33:12: note: suggested alternative: 'int'
if ((int)dist.size() > mx_ig)
^~~~
int
lang.cpp:38:7: error: 'language' was not declared in this scope
ant[language(opt)][i] = E[i-1];
^~~~~~~~
lang.cpp:38:7: note: suggested alternative: 'lang'
ant[language(opt)][i] = E[i-1];
^~~~~~~~
lang