fork download
  1. struct cmp
  2. {
  3. int* distance;
  4. cmp(int* distance)
  5. {
  6. this->distance = distance;
  7. }
  8.  
  9. bool operator()(int a, int b)
  10. {
  11. return distance[a] > distance[b];
  12. }
  13. }
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty