genetics.cpp:6:8: error: 'bitset' was not declared in this scope
6 | vector<bitset<4100>> l;
| ^~~~~~
genetics.cpp:4:1: note: 'std::bitset' is defined in header '<bitset>'; did you forget to '#include <bitset>'?
3 | #include <vector>
+++ |+#include <bitset>
4 | using namespace std;
genetics.cpp:6:19: error: template argument 1 is invalid
6 | vector<bitset<4100>> l;
| ^~
genetics.cpp:6:19: error: template argument 2 is invalid
genetics.cpp: In function 'bool comp(int, int)':
genetics.cpp:8:14: error: invalid types 'int[int]' for array subscript
8 | return (l[i]^l[j]).count() == K;
| ^
genetics.cpp:8:19: error: invalid types 'int[int]' for array subscript
8 | return (l[i]^l[j]).count() == K;
| ^
genetics.cpp: In function 'int main()':
genetics.cpp:13:7: error: request for member 'resize' in 'l', which is of non-class type 'int'
13 | l.resize(N);
| ^~~~~~
genetics.cpp:18:14: error: invalid types 'int[int]' for array subscript
18 | l[i][j]= (s[j]=='A');
| ^
genetics.cpp:49:5: error: expected primary-expression before '}' token
49 | }
| ^