fork download
  1. #include <bits/stdc++.h>
  2. #define endl "\n"
  3. using namespace std;
  4. #define int long long int
  5. #define watch(x) cout << (#x) << " is " << (x) << "\n"
  6. #define watch2(x, y) cout << #x << "=" << x << "," << #y << "=" << y << "\n"
  7.  
  8. int n, m;
  9. const int INF = 1e17;
  10. const int modb = 1e9+7;
  11. const int MAXN = 1e5+1;
  12. vector<vector<pair<int,int>>> g(MAXN);
  13. vector<int> cost(MAXN);
  14. vector<int> route(MAXN);
  15. vector<int> min_f(MAXN);
  16. vector<int> max_f(MAXN);
  17. void dij()
  18. {
  19. priority_queue< pair<int,int>, vector<pair<int,int>>, greater<pair<int,int>> > pq;
  20. pq.push({0,1});
  21. cost[1] = 0;
  22. route[1] = 1;
  23. while(!pq.empty())
  24. {
  25. int d = pq.top().first;
  26. int u = pq.top().second;
  27. pq.pop();
  28. if(d > cost[u]) continue;
  29. for(auto e: g[u])
  30. {
  31. int v = e.first;
  32. int c = e.second;
  33. if(c+d > cost[v]) continue;
  34. if(c+d == cost[v])
  35. {
  36. route[v] += route[u];
  37. route[v] %= modb;
  38. min_f[v] = min(min_f[u]+1, min_f[v]);
  39. max_f[v] = max(max_f[u]+1, max_f[v]);
  40. }
  41. if(c+d < cost[v])
  42. {
  43. cost[v] = c+d;
  44. route[v] = route[u];
  45. min_f[v] = min_f[u]+1;
  46. max_f[v] = max_f[u]+1;
  47. pq.push({cost[v],v});
  48. }
  49. }
  50. }
  51. }
  52. int32_t main()
  53. {
  54. ios_base::sync_with_stdio(false);
  55. cin.tie(NULL);
  56. cin >> n >> m;
  57. for(int i = 0; i <m; ++i)
  58. {
  59. int u, v, c;
  60. cin >> u >> v >> c;
  61. g[u].push_back({v,c});
  62. }
  63. for(int i = 2; i <= n; ++i)
  64. {
  65. cost[i] = INF;
  66. }
  67. dij();
  68. cout << cost[n] <<" " <<route[n] <<" "<<min_f[n] <<" "<<max_f[n] << endl;
  69. }
Success #stdin #stdout 0.01s 8624KB
stdin
10 20
6 7 5
7 6 5
10 8 4
1 2 3
4 5 2
2 3 2
7 9 4
7 4 5
5 7 2
5 6 3
6 7 4
7 8 5
3 8 5
2 7 4
9 10 5
2 3 5
8 9 3
3 4 3
9 8 2
3 7 1
stdout
15 1 5 5