trade.cpp:15:42: warning: integer constant is too large for its type
15 | FOR(i,0,250005)FOR(j,0,205) dp[i][j] = -10000000000000000000000;
| ^~~~~~~~~~~~~~~~~~~~~~~
trade.cpp:30:12: warning: integer constant is too large for its type
30 | ll ans = -10000000000000000000000;
| ^~~~~~~~~~~~~~~~~~~~~~~
trade.cpp: In function 'int main()':
trade.cpp:27:17: warning: iteration 204 invokes undefined behavior [-Waggressive-loop-optimizations]
27 | dp[i+1][j+1] = max(dp[i+1][j+1], dp[i][j] - price[i] + sell[i]);
| ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
trade.cpp:4:33: note: within this loop
4 | #define FOR(i,x,y) for(ll i=x; i<y; i++)
......
25 | FOR(j,0,205){
| ~~~~~~~
trade.cpp:25:3: note: in expansion of macro 'FOR'
25 | FOR(j,0,205){
| ^~~