ricehub.cpp: In function 'int besthub(int, int, int*, long long int)':
ricehub.cpp:14:3: error: 'vector' was not declared in this scope
14 | vector<long long> window = {0,1};
| ^~~~~~
ricehub.cpp:14:10: error: expected primary-expression before 'long'
14 | vector<long long> window = {0,1};
| ^~~~
ricehub.cpp:17:10: error: 'window' was not declared in this scope
17 | while (window[1]<= R-1){
| ^~~~~~
ricehub.cpp:25:29: error: 'abs' was not declared in this scope
25 | sum_of_dist_to_hub+=abs(X[i] - median);
| ^~~
ricehub.cpp:31:19: error: 'window' was not declared in this scope
31 | long long ans = window[1] - window[0];
| ^~~~~~
ricehub.cpp:32:3: error: 'cout' was not declared in this scope
32 | cout<< ans << endl<< "Hubs are between " << window[0] << "and " << window[1];
| ^~~~
ricehub.cpp:32:17: error: 'endl' was not declared in this scope
32 | cout<< ans << endl<< "Hubs are between " << window[0] << "and " << window[1];
| ^~~~