# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
841488 | 2023-09-01T15:41:42 Z | flashmt | 가장 긴 여행 (IOI23_longesttrip) | C++17 | 2 ms | 464 KB |
#include <bits/stdc++.h> #include "longesttrip.h" using namespace std; vector<int> longest_trip(int n, int d) { vector<vector<int>> a(n, vector<int>(n)); for (int i = 0; i < n; i++) for (int j = i + 1; j < n; j++) a[i][j] = a[j][i] = are_connected({i}, {j}); for (int i = 0; i < n; i++) for (int j = 0; j < n; j++) for (int k = 0; k < n; k++) if (a[i][j] && a[j][k]) { deque<int> q; q.push_back(i); q.push_back(j); q.push_back(k); for (int p = 0; p < n; p++) if (p != i && p != j && p != k) { if (a[p][q.back()]) q.push_back(p); else { assert(a[p][q.front()]); q.push_front(p); } } vector<int> ans; while (!empty(q)) { ans.push_back(q.front()); q.pop_front(); } assert(size(ans) == n); return ans; } for (int i = 0; i < n; i++) for (int j = i + 1; j < n; j++) if (a[i][j]) { return {i, j}; } assert(0); return {}; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 336 KB | Execution killed with signal 6 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 464 KB | Execution killed with signal 6 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 336 KB | Execution killed with signal 6 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 464 KB | Execution killed with signal 6 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 336 KB | Execution killed with signal 6 |
2 | Halted | 0 ms | 0 KB | - |