# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
928365 | Kripton | 시간이 돈 (balkan11_timeismoney) | C++17 | 911 ms | 604 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
struct mazan{
int x, y, c, t;
}much[10001];
long double x;
const long double eps = 1e-9;
bool cmp(mazan a, mazan b)
{
return x * a.c + (1.00 - x) * a.t < x * b.c + (1.00 - x) * b.t - eps;
}
int tata[201], sz[201];
int papa(int nod)
{
if(tata[nod] == nod)
return nod;
return tata[nod] = papa(tata[nod]);
}
int sumT, sumC;
pair <int, int> afis[201], acum[201];
int cnt1;
void join(int a, int b, int c, int t)
{
int ra = papa(a), rb = papa(b);
if(ra == rb)
return;
if(sz[ra] < sz[rb])
swap(ra, rb);
tata[rb] = ra;
sz[ra] += sz[rb];
sumC += c;
sumT += t;
acum[++cnt1] = {a, b};
}
int main()
{
#ifdef HOME
freopen("test.in", "r", stdin);
freopen("test.out", "w", stdout);
#endif // HOME
int n, m;
cin >> n >> m;
for(int i = 1; i <= m; i++)
cin >> much[i].x >> much[i].y >> much[i].c >> much[i].t;
long double BULAN = (1.00 / (1 << 10));
long long min1 = LLONG_MAX;
int afisT, afisC;
for(x = 0; x < 1 - eps; x += BULAN)
{
sumT = sumC = 0;
cnt1 = 0;
sort(much + 1, much + m + 1, cmp);
for(int i = 0; i < n; i++)
{
tata[i] = i;
sz[i] = 0;
}
for(int i = 1; i <= m; i++)
join(much[i].x, much[i].y, much[i].c, much[i].t);
if(1LL * sumT * sumC < min1)
{
min1 = 1LL * sumT * sumC;
afisT = sumT;
afisC = sumC;
for(int i = 1; i < n; i++)
afis[i] = acum[i];
}
}
cout << afisC << " " << afisT << '\n';
for(int i = 1; i < n; i++)
cout << afis[i].first << " " << afis[i].second << '\n';
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |