# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
213622 | SamAnd | Cheap flights (LMIO18_pigus_skrydziai) | C++17 | 1476 ms | 80120 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define m_p make_pair
const int N = 5003;
int n, m;
vector<pair<int, int> > a[N];
map<pair<int, int>, int> mp;
int main()
{
scanf("%d%d", &n, &m);
for (int i = 0; i < m; ++i)
{
int x, y, z;
scanf("%d%d%d", &x, &y, &z);
a[x].push_back(m_p(z, y));
a[y].push_back(m_p(z, x));
mp[m_p(x, y)] = z;
mp[m_p(y, x)] = z;
}
long long ans = 0;
for (int x = 1; x <= n; ++x)
{
long long yans = 0;
for (int i = 0; i < a[x].size(); ++i)
{
yans += a[x][i].first;
}
ans = max(ans, yans);
}
for (int x = 1; x <= n; ++x)
{
sort(a[x].begin(), a[x].end());
reverse(a[x].begin(), a[x].end());
if (a[x].size() >= 2 && mp.find(m_p(a[x][0].second, a[x][1].second)) != mp.end())
ans = max(ans, a[x][0].first + 0LL + a[x][1].first + mp[m_p(a[x][0].second, a[x][1].second)]);
}
printf("%lld\n", ans);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |