lang.cpp:8:5: error: 'll' was not declared in this scope
map<ll, int> cnt[56];
^~
lang.cpp:8:12: error: template argument 1 is invalid
map<ll, int> cnt[56];
^
lang.cpp:8:12: error: template argument 3 is invalid
lang.cpp:8:12: error: template argument 4 is invalid
lang.cpp:9:5: error: 'll' was not declared in this scope
map<ll, int> cnt2[56];
^~
lang.cpp:9:12: error: template argument 1 is invalid
map<ll, int> cnt2[56];
^
lang.cpp:9:12: error: template argument 3 is invalid
lang.cpp:9:12: error: template argument 4 is invalid
lang.cpp:10:5: error: 'll' was not declared in this scope
map<ll, int> cnt3[56];
^~
lang.cpp:10:12: error: template argument 1 is invalid
map<ll, int> cnt3[56];
^
lang.cpp:10:12: error: template argument 3 is invalid
lang.cpp:10:12: error: template argument 4 is invalid
lang.cpp:11:5: error: 'll' was not declared in this scope
map<ll, int> cnt4[56];
^~
lang.cpp:11:12: error: template argument 1 is invalid
map<ll, int> cnt4[56];
^
lang.cpp:11:12: error: template argument 3 is invalid
lang.cpp:11:12: error: template argument 4 is invalid
lang.cpp:13:1: error: 'll' does not name a type
ll f(ll a, ll b){
^~
lang.cpp:17:1: error: 'll' does not name a type
ll f(ll a, ll b, ll c){
^~
lang.cpp:21:1: error: 'll' does not name a type
ll f(ll a, ll b, ll c, ll d){
^~
lang.cpp: In function 'void excerpt(int*)':
lang.cpp:30:24: error: invalid types 'int[int]' for array subscript
now += cnt[i][arr[j]];
^
lang.cpp:32:18: error: 'f' was not declared in this scope
now += cnt[i][f(arr[j], arr[j+1])];
^
lang.cpp:45:18: error: invalid types 'int[int]' for array subscript
cnt[ans][arr[i]] = 1;
^
lang.cpp:47:12: error: 'f' was not declared in this scope
cnt[ans][f(arr[i], arr[i+1])] = 1;
^