結果

問題 No.1639 最小通信路
ユーザー Nzt3
提出日時 2021-08-06 22:36:50
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 1,731 ms
コンパイル使用メモリ 167,088 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-17 02:47:22
合計ジャッジ時間 2,889 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 43
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int rt[105];
int getrt(int n){
  if(rt[n]==-1)return n;
  else return rt[n]=getrt(rt[n]);
}

int main(){
  fill(rt,rt+105,-1);
  int N;cin>>N;
  string S="";
  for(int i=0,cnt=N-1,a,b;i<N*N-N;i++){
    cin>>a>>b>>S;
    a=getrt(a-1),b=getrt(b-1);
    if(a!=b){
      rt[a]=b;
      --cnt;
    }
    if(cnt==0){
      cout<<S<<'\n';
      return 0;
    }
  }
}
0