# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
532355 | Alex_tz307 | Autobus (COCI22_autobus) | C++17 | 167 ms | 6324 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define INF 0x3f3f3f3f
using namespace std;
const int64_t INFL = 1e18L;
void minSelf(int &x, int y) {
if (y < x) {
x = y;
}
}
void testCase() {
int n, m;
cin >> n >> m;
vector<vector<int>> wt(n + 1, vector<int>(n + 1, INF));
for (int i = 0; i < m; ++i) {
int u, v, w;
cin >> u >> v >> w;
minSelf(wt[u][v], w);
}
vector<vector<pair<int, int>>> g(n + 1);
for (int u = 1; u <= n; ++u) {
for (int v = 1; v <= n; ++v) {
if (u != v && wt[u][v] != INF) {
g[u].emplace_back(v, wt[u][v]);
}
}
}
# | 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... |