merchant.cpp:4:14: error: 'LLONG_MAX' was not declared in this scope
4 | const ll INF=LLONG_MAX/2;
| ^~~~~~~~~
merchant.cpp:1:1: note: 'LLONG_MAX' is defined in header '<climits>'; did you forget to '#include <climits>'?
+++ |+#include <climits>
1 | #define ll long long
merchant.cpp: In function 'void floyd_warshall(long long int (*)[101])':
merchant.cpp:14:25: error: 'min' was not declared in this scope
14 | v[j][k]=min(v[j][k],v[j][i]+v[i][k]);
| ^~~
merchant.cpp: In function 'int main()':
merchant.cpp:18:5: error: 'cin' was not declared in this scope
18 | cin>>n>>m>>x;
| ^~~
merchant.cpp:1:1: note: 'std::cin' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
+++ |+#include <iostream>
1 | #define ll long long
merchant.cpp:39:29: error: 'max' was not declared in this scope
39 | p[i][j]=max(p[i][j],s[j][k]-b[i][k]);
| ^~~
merchant.cpp:48:30: error: 'min' was not declared in this scope; did you mean 'mid'?
48 | g2[i][j]=mid*min(g[i][j],INF/mid)-p[i][j];
| ^~~
| mid
merchant.cpp:66:5: error: 'cout' was not declared in this scope
66 | cout<<r;
| ^~~~
merchant.cpp:66:5: note: 'std::cout' is defined in header '<iostream>'; did you forget to '#include <iostream>'?