# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1008689 | 2024-06-26T16:42:51 Z | Abito | 가장 긴 여행 (IOI23_longesttrip) | C++17 | 1 ms | 344 KB |
#include "longesttrip.h" #include <bits/stdc++.h> #define pb push_back using namespace std; std::vector<int> longest_trip(int n, int D) { vector<int> v; vector<bool> vis(n); v.pb(0); while (v.size()<n){ for (int i=0;i<n;i++){ if (vis[i]) continue; vector<int> x,y;x.pb(v.back());y.pb(i); if (!are_connected(x,y)) continue; v.pb(i); break; } } return v; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 344 KB | non-disjoint arrays |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | non-disjoint arrays |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | non-disjoint arrays |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 344 KB | non-disjoint arrays |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | non-disjoint arrays |
2 | Halted | 0 ms | 0 KB | - |