結果

問題 No.1473 おでぶなおばけさん
ユーザー 👑 CleyLCleyL
提出日時 2022-08-18 15:59:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,751 bytes
コンパイル時間 1,061 ms
コンパイル使用メモリ 93,828 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-10-06 08:14:22
合計ジャッジ時間 7,925 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 124 ms
10,880 KB
testcase_03 AC 100 ms
9,216 KB
testcase_04 AC 66 ms
7,552 KB
testcase_05 AC 24 ms
5,248 KB
testcase_06 AC 109 ms
9,088 KB
testcase_07 AC 125 ms
11,520 KB
testcase_08 AC 128 ms
11,520 KB
testcase_09 AC 125 ms
11,520 KB
testcase_10 AC 88 ms
5,248 KB
testcase_11 AC 86 ms
5,248 KB
testcase_12 AC 88 ms
5,248 KB
testcase_13 AC 55 ms
5,248 KB
testcase_14 AC 39 ms
5,248 KB
testcase_15 AC 75 ms
5,248 KB
testcase_16 AC 85 ms
5,248 KB
testcase_17 AC 7 ms
5,248 KB
testcase_18 AC 12 ms
5,248 KB
testcase_19 AC 69 ms
5,248 KB
testcase_20 AC 80 ms
8,448 KB
testcase_21 AC 95 ms
6,656 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 117 ms
8,704 KB
testcase_27 WA -
testcase_28 AC 127 ms
11,264 KB
testcase_29 WA -
testcase_30 AC 112 ms
7,296 KB
testcase_31 AC 114 ms
11,520 KB
testcase_32 AC 94 ms
9,088 KB
testcase_33 AC 79 ms
8,320 KB
testcase_34 AC 45 ms
6,144 KB
testcase_35 AC 48 ms
5,376 KB
testcase_36 WA -
testcase_37 AC 99 ms
8,960 KB
testcase_38 WA -
testcase_39 AC 89 ms
5,248 KB
testcase_40 AC 88 ms
5,248 KB
testcase_41 AC 76 ms
5,248 KB
testcase_42 AC 77 ms
5,248 KB
testcase_43 AC 91 ms
9,028 KB
testcase_44 AC 90 ms
8,900 KB
testcase_45 AC 91 ms
8,904 KB
testcase_46 AC 90 ms
8,704 KB
testcase_47 AC 113 ms
9,856 KB
testcase_48 AC 97 ms
9,472 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:139:20: warning: 'rew' may be used uninitialized [-Wmaybe-uninitialized]
  139 |     cout << rew << " " << C[n-1] << endl;
      |                    ^~~
main.cpp:128:9: note: 'rew' was declared here
  128 |     int rew;
      |         ^~~

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <queue>
using namespace std;
struct edge{
    int s,t,d;
};
bool operator<(edge a, edge b){
    if(a.d == b.d){
        if(a.s == b.s){
            return a.t < b.t;
        }
       return a.s < b.s;
    }
    return a.d < b.d;
}
bool operator==(edge a, edge b){
    return a.s == b.s && a.t == b.t && a.d == b.d;
}
bool operator>(edge a,edge b){
    return !(a<b || a==b);
}
struct UnionFind {
  int n;
  vector<int> par;
  vector<int> size_;
  UnionFind(int n_) : n(n_), par((size_t)n_), size_((size_t)n_,1){
    for(int i = 0; n > i; i++)par[i] = i;
  }

  int root(int x){
    if(par[x] == x)return x;
    return par[x] = root(par[x]);
  }

  void unite(int a,int b){
    int ra = root(a);
    int rb = root(b);
    if(ra==rb)return;
    if(size(ra) > size(rb)) swap(ra,rb);
    par[ra] = rb;
    size_[rb] += size_[ra];
  }

  bool same(int a, int b){
    return root(a) == root(b);
  }

  int size(int a){
    return size_[root(a)];
  }
  void debug(){
    for(int i = 0; n > i; i++){
      cout << size_[root(i)] << " ";
    }
    cout << endl;

    return;
  }
};
template<typename T>
class dijkstra{
  struct vg{
    int t;
    T c;
  };
  vector<T> cost;
  void run(int x){
    auto comp = [](vg a,vg b){
      return a.c>b.c;
    };
    priority_queue<vg,vector<vg>,decltype(comp)> R{comp};
    for(int i = 0; n > i; i++){
      cost[i] = -1;
    }
    cost[x] = 0;
    R.push({x,0});
    while(R.size()){
      auto k = R.top();R.pop();
      if(cost[k.t] != k.c)continue;
      for(int i = 0; A[k.t].size() > i; i++){
        if(cost[A[k.t][i].t] != -1 && cost[A[k.t][i].t] <= k.c+A[k.t][i].c)continue;
        cost[A[k.t][i].t] = k.c+A[k.t][i].c;
        R.push({A[k.t][i].t,k.c+A[k.t][i].c});
      }
    }

  }

public:
  int n;
  vector<vector<vg>> A;
	dijkstra(int n_):n(n_),A(n_),cost(n_,-1){}

  //双方向
  void push(int s,int v){
    A[s].push_back({v,1});
    A[v].push_back({s,1});
  }
  void push(int s,int v,int c){
    A[s].push_back({v,c});
    A[v].push_back({s,c});
  }

  void push_side(int s,int v,int c){
    A[s].push_back({v,c});
  }

  void build(int x){
    run(x);
  }

  int operator[](int i){
    return cost[i];
  }
  
};int main(){
    int n,m;cin>>n>>m;
    vector<edge> A(m);
    for(int i = 0; m > i; i++){
        cin>>A[i].s>>A[i].t>>A[i].d;
        A[i].s--;A[i].t--;
    }
    sort(A.begin(),A.end(),greater<edge>());
    UnionFind B(n);
    dijkstra<int> C(n);
    int rew;
    for(int i = 0; m > i; i++){
        C.push(A[i].s,A[i].t);
        B.unite(A[i].s,A[i].t);
        if(B.same(0,n-1)){
            
            rew = A[i].d;
            break;
        }
    }
    C.build(0);
    cout << rew << " " << C[n-1] << endl;
}
0