답안 #467938

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
467938 2021-08-25T16:19:37 Z czhang2718 시간이 돈 (balkan11_timeismoney) C++14
0 / 100
6 ms 716 KB
#include "bits/stdc++.h"
using namespace std;

int n, m;
const int N=200;
int par[N];
vector<pair<int, pair<int, int>>> edges;

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

bool join(int x, int y){
  if(find(x)==find(y)) return 0;
  par[find(x)]=find(y);
  return 1;
}

int main(){
  cin.tie(0)->sync_with_stdio(0);
  // freopen("input.txt", "r", stdin);
  // freopen("output.txt", "w", stdout);

  cin >> n >> m;
  for(int i=0; i<n; i++) par[i]=i;
  for(int i=0; i<m; i++){
    int u, v, c, t; cin >> u >> v >> c >> t;
    edges.push_back({c, {u, v}});
  }
  int ans=0;
  sort(edges.begin(), edges.end());
  for(auto p:edges){
    int u=p.second.first;
    int v=p.second.second;
    if(join(u, v)) ans+=p.first;
  }
  cout << ans*ans;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Unexpected end of file - int64 expected
2 Incorrect 1 ms 204 KB Unexpected end of file - int64 expected
3 Incorrect 1 ms 204 KB Unexpected end of file - int64 expected
4 Incorrect 1 ms 204 KB Unexpected end of file - int64 expected
5 Incorrect 1 ms 332 KB Unexpected end of file - int64 expected
6 Incorrect 1 ms 204 KB Unexpected end of file - int64 expected
7 Incorrect 1 ms 320 KB Unexpected end of file - int64 expected
8 Incorrect 5 ms 716 KB Unexpected end of file - int64 expected
9 Incorrect 0 ms 204 KB Unexpected end of file - int64 expected
10 Incorrect 0 ms 204 KB Unexpected end of file - int64 expected
11 Incorrect 1 ms 204 KB Unexpected end of file - int64 expected
12 Incorrect 1 ms 316 KB Unexpected end of file - int64 expected
13 Incorrect 1 ms 204 KB Unexpected end of file - int64 expected
14 Incorrect 1 ms 332 KB Unexpected end of file - int64 expected
15 Incorrect 1 ms 332 KB Unexpected end of file - int64 expected
16 Incorrect 2 ms 332 KB Unexpected end of file - int64 expected
17 Incorrect 1 ms 332 KB Unexpected end of file - int64 expected
18 Incorrect 2 ms 332 KB Unexpected end of file - int64 expected
19 Incorrect 5 ms 716 KB Unexpected end of file - int64 expected
20 Incorrect 6 ms 716 KB Unexpected end of file - int64 expected