teams.cpp: In function 'int main()':
teams.cpp:21:32: warning: suggest parentheses around '-' in operand of '&' [-Wparentheses]
dp[i&1][j] = j*dp[1-i&1][j] + dp[1-i&1][j+1];
~^~
teams.cpp:21:47: warning: suggest parentheses around '-' in operand of '&' [-Wparentheses]
dp[i&1][j] = j*dp[1-i&1][j] + dp[1-i&1][j+1];
~^~
teams.cpp:11:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d",&n);
~~~~~^~~~~~~~~
teams.cpp:13:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d",&a[i]);
~~~~~^~~~~~~~~~~~