beauty.cpp:29:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
main(){ // If you don't know what to do, check the text box at the bottom
^
beauty.cpp: In function 'int main()':
beauty.cpp:37:27: error: 'mask' was not declared in this scope
ll submask = (mask | (1LL << j)), s = 0;
^~~~
beauty.cpp:37:27: note: suggested alternative: 'main'
ll submask = (mask | (1LL << j)), s = 0;
^~~~
main
beauty.cpp:39:17: error: 's' was not declared in this scope
s = 0; dp[i] = INF;
^
beauty.cpp:46:20: error: 'i' was not declared in this scope
if (dp[i] < )
^
beauty.cpp:46:25: error: expected primary-expression before ')' token
if (dp[i] < )
^
beauty.cpp:47:9: error: expected primary-expression before '}' token
}
^
beauty.cpp:32:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%lld", &a[i]);
~~~~~^~~~~~~~~~~~~~~