結果

問題 No.748 yuki国のお財布事情
ユーザー akakimidoriakakimidori
提出日時 2018-10-19 21:37:12
言語 C
(gcc 12.3.0)
結果
RE  
実行時間 -
コード長 1,035 bytes
コンパイル時間 452 ms
コンパイル使用メモリ 31,744 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-18 20:13:05
合計ジャッジ時間 3,839 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 1 ms
5,248 KB
testcase_02 RE -
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 1 ms
5,248 KB
testcase_24 AC 1 ms
5,248 KB
testcase_25 RE -
testcase_26 AC 49 ms
5,248 KB
testcase_27 WA -
testcase_28 AC 31 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<stdlib.h>

typedef long long int int64;

typedef struct wedge{
  int a,b,c;
} edge;

int root(int *u,int x){
  if(u[x]==x) return x;
  return u[x]=root(u,u[x]);
}

int same(int *u,int x,int y){
  return root(u,x)==root(u,y);
}

void unite(int *u,int x,int y){
  x=root(u,x);
  y=root(u,y);
  if(x==y) return;
  u[x]=y;
}

int cmp(const void *a,const void *b){
  return (*(edge *)a).c-(*(edge *)b).c;
}

void run(void){
  int n,m,k;
  scanf("%d%d%d",&n,&m,&k);
  edge *e=(edge *)calloc(m,sizeof(edge));
  int i;
  for(i=0;i<m;i++) scanf("%d%d%d",&e[i].a,&e[i].b,&e[i].c);
  int *u=(int *)calloc(n+1,sizeof(int));
  for(i=0;i<=m;i++) u[i]=i;
  for(i=0;i<k;i++){
    int p;
    scanf("%d",&p);
    p--;
    unite(u,e[p].a,e[p].b);
    e[p].c=0;
  }
  qsort(e,m,sizeof(edge),cmp);
  int64 sum=0;
  for(i=0;i<m;i++){
    if(e[i].c==0) continue;
    if(same(u,e[i].a,e[i].b)){
      sum+=e[i].c;
    } else {
      unite(u,e[i].a,e[i].b);
    }
  }
  printf("%lld\n",sum);
}

int main(void){
  run();
  return 0;
}
0