/in/foo.cc: In function 'void spfa()':
/in/foo.cc:21:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i=0; i<q.size(); i++) {
~^~~~~~~~~
/in/foo.cc:24:17: error: 'class std::vector<std::pair<int, int> >' has no member named 'first'
int v = edge.first, w = edge.second;
^~~~~
/in/foo.cc:25:18: error: 'w' was not declared in this scope
if (dist[u] + w < dist[v]) {
^
/in/foo.cc: In function 'int main()':
/in/foo.cc:52:21: error: 'n' was not declared in this scope
std::cout << dist[n - 1] << std::endl;
^