# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
467940 | czhang2718 | 시간이 돈 (balkan11_timeismoney) | C++14 | 5 ms | 588 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
using namespace std;
#define nl '\n'
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("timeismoney.out", "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 >> t >> c;
edges.push_back({c, {u, v}});
}
int ans=0;
vector<pair<int, int>> use;
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, use.push_back({u, v});
}
cout << ans << " " << ans << nl;
for(auto e:use) cout << e.first << " " << e.second << nl;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |