0_0_39803256_15415.cpp:13:1: error: 'unordered_map' does not name a type
13 | unordered_map<pair<int,int>,int>st;
| ^~~~~~~~~~~~~
0_0_39803256_15415.cpp: In function 'void spfa()':
0_0_39803256_15415.cpp:48:13: error: 'st' was not declared in this scope; did you mean 't'?
48 | st[{pre[i][j],i}]=1;
| ^~
| t
0_0_39803256_15415.cpp: In function 'bool bfs()':
0_0_39803256_15415.cpp:70:32: error: 'st' was not declared in this scope; did you mean 'tt'?
70 | if(d[v]==-1&&f[i]&&st[{u,v}])//没有遍历过,并且容量大于0
| ^~
| tt
|