glo.cpp: In function 'int main()':
glo.cpp:2:23: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
#define loop(i, a, b) for(int i=a;i<b;i++)
^
glo.cpp:12:5: note: in expansion of macro 'loop'
loop(i, 0, maxn) temp[i]=LLONG_MAX;temp[0]=LLONG_MIN;
^~~~
glo.cpp:12:40: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
loop(i, 0, maxn) temp[i]=LLONG_MAX;temp[0]=LLONG_MIN;
^~~~
glo.cpp:2:23: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
#define loop(i, a, b) for(int i=a;i<b;i++)
^
glo.cpp:14:5: note: in expansion of macro 'loop'
loop(i, 0, maxn) temp[i]=LLONG_MAX;temp[0]=LLONG_MIN;
^~~~
glo.cpp:14:40: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
loop(i, 0, maxn) temp[i]=LLONG_MAX;temp[0]=LLONG_MIN;
^~~~
glo.cpp:11:24: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
loop(i, 0, n) scanf("%lld", &arr[i]);
~~~~~^~~~~~~~~~~~~~~~~