Algo-Trian
This commit is contained in:
9
Algorithm/Graph/P4779 【模板】单源最短路径(标准版).cpp
Normal file
9
Algorithm/Graph/P4779 【模板】单源最短路径(标准版).cpp
Normal file
@@ -0,0 +1,9 @@
|
||||
#include <iostream>
|
||||
#include <vector>
|
||||
using namespace std;
|
||||
int main(){
|
||||
int v, e, start;
|
||||
cin >> v >> e >> start;
|
||||
vector<int> map(v, 0);
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user