Main.cpp: In function 'int main()':
Main.cpp:20:45: error: 'dp' was not declared in this scope; did you mean 'dup'?
20 | ans=min(ans,dp[0][j]);
| ^~
| dup
Main.cpp:25:33: error: 'dp' was not declared in this scope; did you mean 'dup'?
25 | dp[1][j^k]=min(dp[1][j^k],dp[0][j]+table[j][j^k]);
| ^~
| dup
Main.cpp:25:68: error: 'table' was not declared in this scope
25 | dp[1][j^k]=min(dp[1][j^k],dp[0][j]+table[j][j^k]);
| ^~~~~
Main.cpp:28:22: error: 'dp' was not declared in this scope; did you mean 'dup'?
28 | swap(dp[0],dp[1]);
| ^~
| dup