events.cpp: In function 'int main()':
events.cpp:34:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
34 | scanf("%d %d", &n, &q);
| ~~~~~^~~~~~~~~~~~~~~~~
events.cpp:53:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
53 | scanf("%d %d", &a, &b);
| ~~~~~^~~~~~~~~~~~~~~~~
events.cpp: In member function 'void interval::scan(int)':
events.cpp:17:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
17 | scanf("%d %d", &l, &r);
| ~~~~~^~~~~~~~~~~~~~~~~
events.cpp: In function 'int main()':
events.cpp:29:15: warning: array subscript -1 is below array bounds of 'int [22]' [-Warray-bounds]
29 | if(dp[i][j] != 0) return dp[i][j];
| ~~~~~~~^
events.cpp:29:15: warning: array subscript -2 is below array bounds of 'int [22]' [-Warray-bounds]
29 | if(dp[i][j] != 0) return dp[i][j];
| ~~~~~~~^
events.cpp:30:19: warning: array subscript -2 is below array bounds of 'int [22]' [-Warray-bounds]
30 | return dp[i][j] = getDP(getDP(i, j - 1), j - 1);
| ~~~~~~~^
events.cpp:29:15: warning: array subscript -2 is below array bounds of 'int [22]' [-Warray-bounds]
29 | if(dp[i][j] != 0) return dp[i][j];
| ~~~~~~~^
events.cpp:30:19: warning: array subscript -2 is below array bounds of 'int [22]' [-Warray-bounds]
30 | return dp[i][j] = getDP(getDP(i, j - 1), j - 1);
| ~~~~~~~^
events.cpp:30:19: warning: array subscript -1 is below array bounds of 'int [22]' [-Warray-bounds]
30 | return dp[i][j] = getDP(getDP(i, j - 1), j - 1);
| ~~~~~~~^
events.cpp:29:15: warning: array subscript -1 is below array bounds of 'int [22]' [-Warray-bounds]
29 | if(dp[i][j] != 0) return dp[i][j];
| ~~~~~~~^
events.cpp:29:15: warning: array subscript -2 is below array bounds of 'int [22]' [-Warray-bounds]
29 | if(dp[i][j] != 0) return dp[i][j];
| ~~~~~~~^
events.cpp:30:19: warning: array subscript -2 is below array bounds of 'int [22]' [-Warray-bounds]
30 | return dp[i][j] = getDP(getDP(i, j - 1), j - 1);
| ~~~~~~~^
events.cpp:29:15: warning: array subscript -2 is below array bounds of 'int [22]' [-Warray-bounds]
29 | if(dp[i][j] != 0) return dp[i][j];
| ~~~~~~~^
events.cpp:30:19: warning: array subscript -2 is below array bounds of 'int [22]' [-Warray-bounds]
30 | return dp[i][j] = getDP(getDP(i, j - 1), j - 1);
| ~~~~~~~^
events.cpp:30:19: warning: array subscript -1 is below array bounds of 'int [22]' [-Warray-bounds]
30 | return dp[i][j] = getDP(getDP(i, j - 1), j - 1);
| ~~~~~~~^