joioi.cpp: In lambda function:
joioi.cpp:22:12: sorry, unimplemented: capture of variably-modified type 'long long int [h][w]' that is not an N3639 array of runtime bound
22 | if(abs(a[i][j]-mn)<=t)color[i][j]=1;
| ^
joioi.cpp:22:12: note: because the array element type 'long long int [w]' has variable size
joioi.cpp:22:27: sorry, unimplemented: capture of variably-modified type 'long long int [h][w]' that is not an N3639 array of runtime bound
22 | if(abs(a[i][j]-mn)<=t)color[i][j]=1;
| ^~~~~
joioi.cpp:22:27: note: because the array element type 'long long int [w]' has variable size
joioi.cpp:27:8: sorry, unimplemented: capture of variably-modified type 'long long int [h][w]' that is not an N3639 array of runtime bound
27 | if(color[i][j]!=1&&abs(a[i][j]-mx)<=t)color[i][j]=2;
| ^~~~~
joioi.cpp:27:8: note: because the array element type 'long long int [w]' has variable size
joioi.cpp:27:28: sorry, unimplemented: capture of variably-modified type 'long long int [h][w]' that is not an N3639 array of runtime bound
27 | if(color[i][j]!=1&&abs(a[i][j]-mx)<=t)color[i][j]=2;
| ^
joioi.cpp:27:28: note: because the array element type 'long long int [w]' has variable size
joioi.cpp:27:43: sorry, unimplemented: capture of variably-modified type 'long long int [h][w]' that is not an N3639 array of runtime bound
27 | if(color[i][j]!=1&&abs(a[i][j]-mx)<=t)color[i][j]=2;
| ^~~~~
joioi.cpp:27:43: note: because the array element type 'long long int [w]' has variable size
joioi.cpp:28:17: sorry, unimplemented: capture of variably-modified type 'long long int [h][w]' that is not an N3639 array of runtime bound
28 | else if(abs(a[i][j]-mx)<=t)color[i][j]=3;
| ^
joioi.cpp:28:17: note: because the array element type 'long long int [w]' has variable size
joioi.cpp:28:32: sorry, unimplemented: capture of variably-modified type 'long long int [h][w]' that is not an N3639 array of runtime bound
28 | else if(abs(a[i][j]-mx)<=t)color[i][j]=3;
| ^~~~~
joioi.cpp:28:32: note: because the array element type 'long long int [w]' has variable size
joioi.cpp:35:8: sorry, unimplemented: capture of variably-modified type 'long long int [h][w]' that is not an N3639 array of runtime bound
35 | if(color[i][j]==1)ans[i]=j;
| ^~~~~
joioi.cpp:35:8: note: because the array element type 'long long int [w]' has variable size
joioi.cpp:36:8: sorry, unimplemented: capture of variably-modified type 'long long int [h][w]' that is not an N3639 array of runtime bound
36 | if(color[i][j]==2&&a2==0){
| ^~~~~
joioi.cpp:36:8: note: because the array element type 'long long int [w]' has variable size
joioi.cpp:45:8: sorry, unimplemented: capture of variably-modified type 'long long int [h][w]' that is not an N3639 array of runtime bound
45 | if(color[i][j]==1)ans[i]=j;
| ^~~~~
joioi.cpp:45:8: note: because the array element type 'long long int [w]' has variable size
joioi.cpp:46:8: sorry, unimplemented: capture of variably-modified type 'long long int [h][w]' that is not an N3639 array of runtime bound
46 | if(color[i][j]==2&&a2==0){
| ^~~~~
joioi.cpp:46:8: note: because the array element type 'long long int [w]' has variable size
joioi.cpp:55:8: sorry, unimplemented: capture of variably-modified type 'long long int [h][w]' that is not an N3639 array of runtime bound
55 | if(color[i][j]==1)ans2[i]=j;
| ^~~~~
joioi.cpp:55:8: note: because the array element type 'long long int [w]' has variable size
joioi.cpp:56:8: sorry, unimplemented: capture of variably-modified type 'long long int [h][w]' that is not an N3639 array of runtime bound
56 | if(color[i][j]==2&&a2==0){
| ^~~~~
joioi.cpp:56:8: note: because the array element type 'long long int [w]' has variable size
joioi.cpp: In function 'int main()':
joioi.cpp:18:6: warning: variable 'color' set but not used [-Wunused-but-set-variable]
18 | int color[h][w];
| ^~~~~