skyscraper.cpp:1:43: warning: bad option '-f Ofast' to pragma 'optimize' [-Wpragmas]
1 | #pragma GCC optimize("unroll-loops, Ofast")
| ^
skyscraper.cpp:10:25: warning: bad option '-f Ofast' to attribute 'optimize' [-Wattributes]
10 | inline void dij(int root){
| ^
skyscraper.cpp:42:14: warning: bad option '-f Ofast' to attribute 'optimize' [-Wattributes]
42 | int32_t main(){
| ^
skyscraper.cpp: In function 'int32_t main()':
skyscraper.cpp:52:14: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long long int' [-Wformat=]
52 | printf("%d\n", (dis[1] >= INT_MAX/2? -1ll : dis[1]));
| ~^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| | |
| int long long int
| %lld
skyscraper.cpp:45:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
45 | scanf("%d %d", &n, &m);
| ~~~~~^~~~~~~~~~~~~~~~~
skyscraper.cpp:48:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
48 | scanf("%d %d", b + i, p + i);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~