This documentation is automatically generated by online-judge-tools/verification-helper
#define PROBLEM "https://judge.yosupo.jp/problem/shortest_path"
#include <bits/stdc++.h>
using namespace std;
#include "../../../lib/graph/dijkstra.hpp"
vector<vector<array<long long, 2>>> G;
int n, m, s, t;
int main(){
cin >> n >> m >> s >> t;
G.resize(n);
for(int i = 0; i < m; i++){
int a, b, c; cin >> a >> b >> c;
G[a].push_back({b, c});
}
pair<long long, vector<pair<int, int>>> p = shortest_path(G, s, t);
if(p.first == -1){
cout << -1 << "\n";
}else{
cout << p.first << " " << (int) p.second.size() << "\n";
for(auto [u, v] : p.second){
cout << u << " " << v << "\n";
}
}
}
#line 1 "test/library_checker/graph/shortest_path.test.cpp"
#define PROBLEM "https://judge.yosupo.jp/problem/shortest_path"
#include <bits/stdc++.h>
using namespace std;
#line 2 "lib/graph/dijkstra.hpp"
/**
* @brief Dijkstra's Algorithm (ダイクストラ法)
* @docs docs/graph/dijkstra.md
*/
template <typename T>
vector<long long> dijkstra(const vector<vector<array<long long, 2>>> &G, T x){
const long long INF = 0x1fffffffffffffff;
vector<long long> cost((int) G.size(), INF);
using P = pair<long long, long long>;
priority_queue<P, vector<P>, greater<>> q;
cost[x] = 0;
q.emplace(0, x);
while(q.size()){
auto [c, at] = q.top();
q.pop();
if(c > cost[at]) continue;
for(auto &[to, t] : G[at]){
if(cost[to] > c + t){
cost[to] = c + t;
q.emplace(cost[to], to);
}
}
}
return cost;
}
pair<long long, vector<pair<int, int>>> shortest_path(const vector<vector<array<long long, 2>>> &G, int s, int t){
const long long INF = 0x1fffffffffffffff;
vector<long long> cost((int) G.size(), INF);
vector<int> par((int) G.size(), -1);
using P = pair<long long, long long>;
priority_queue<P, vector<P>, greater<>> q;
cost[s] = 0;
par[s] = -1;
q.emplace(0, s);
while(q.size()){
auto [c, at] = q.top();
q.pop();
if(c > cost[at]) continue;
for(auto &[to, t] : G[at]){
if(cost[to] > c + t){
par[to] = at;
cost[to] = c + t;
q.emplace(cost[to], to);
}
}
}
if(cost[t] == INF){
return {-1, {}};
}
vector<pair<int, int>> path;
for(int now = t; par[now] != -1; now = par[now]){
path.emplace_back(par[now], now);
}
reverse(path.begin(), path.end());
return {cost[t], path};
}
#line 6 "test/library_checker/graph/shortest_path.test.cpp"
vector<vector<array<long long, 2>>> G;
int n, m, s, t;
int main(){
cin >> n >> m >> s >> t;
G.resize(n);
for(int i = 0; i < m; i++){
int a, b, c; cin >> a >> b >> c;
G[a].push_back({b, c});
}
pair<long long, vector<pair<int, int>>> p = shortest_path(G, s, t);
if(p.first == -1){
cout << -1 << "\n";
}else{
cout << p.first << " " << (int) p.second.size() << "\n";
for(auto [u, v] : p.second){
cout << u << " " << v << "\n";
}
}
}