# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
22588 | 카시코이 (#40) | Logistical Metropolis (KRIII5_LM) | C++11 | 86 ms | 1356 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <cassert>
#include <algorithm>
#include <vector>
using namespace std;
struct edge{
int x, y, d;
bool operator< (const edge& rhs) const {
return d < rhs.d;
}
};
vector<edge> e;
vector<pair<int, int> > con[1010];
int par[1010];
int getpar(int x){
if(x == par[x]) return x;
return (par[x] = getpar(par[x]));
}
int main(){
int N, M; scanf("%d%d", &N, &M);
assert(N <= 1000);
for(int i = 0; i < M; i++){
int x, y, d; scanf("%d%d%d", &x, &y, &d);
con[x].push_back({y, d});
con[y].push_back({x, d});
e.push_back({x, y, d});
}
sort(e.begin(), e.end());
for(int V = 1; V <= N; V++){
for(int i = 1; i <= N; i++) par[i] = i;
int s = 0;
for(auto &pp : con[V]){
s += pp.second; par[pp.first] = V;
}
for(edge& ee : e){
int px = getpar(ee.x);
int py = getpar(ee.y);
if(px != py){
s += ee.d; par[py] = px;
}
}
printf("%d\n", s);
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |