# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1056686 | mc061 | Longest Trip (IOI23_longesttrip) | C++17 | 10 ms | 940 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
vector<int> path;
vector<int> mxpath;
int n;
set<int> have;
const int maxN = 256;
bool connected[maxN][maxN]={};
bool ans[maxN][maxN]={};
bool are_connected(vector<int> A, vector<int> B);
void dfs(int v) {
path.push_back(v);
have.insert(v);
if (path.size() == n) {
return;
}
vector<int> ord(n);
iota(ord.begin(), ord.end(), 0);
random_shuffle(ord.begin(), ord.end());
for (int i : ord) {
if (!have.count(i)) {
bool c = false;
if (ans[v][i]) {
c = connected[v][i];
}
else {
ans[v][i] = ans[i][v] = true;
bool x = are_connected(vector<int>{i}, vector<int>{v});
connected[v][i] = connected[i][v] = x;
c = x;
}
if (c)
dfs(i);
}
if (path.size() == n) return;
}
if (path.size() == n) return;
if (path.size() > mxpath.size()) {
mxpath = path;
}
path.pop_back();
have.erase(v);
}
vector<int> longest_trip(int N, int D) {
for (int i = 0; i < N; ++i) {
for (int j = 0; j < N; ++j) {
connected[i][j] = false;
ans[i][j] = false;
}
}
n = N;
int start = 0;
path.clear();
have.clear();
vector<int> o(n);
iota(o.begin(), o.end(), 0);
random_shuffle(o.begin(), o.end());
for (int i = 0; i < min(n, 50); ++i) {
path.clear();
have.clear();
dfs(o[i]);
if (path.size() == n) return path;
}
return mxpath.size() > path.size() ? mxpath : path;
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |