제출 #841210

#제출 시각아이디문제언어결과실행 시간메모리
841210I_love_Hoang_YenLongest Trip (IOI23_longesttrip)C++17
5 / 100
9 ms208 KiB
#include "longesttrip.h" #include <bits/stdc++.h> using namespace std; // Subtask 1: D == 3 vector<int> sub1(int n) { vector<int> res(n); std::iota(res.begin(), res.end(), 0); return res; } // Subtask 2: D == 2 vector<int> sub2(int n) { vector<int> res; res.push_back(0); res.push_back(1); for (int i = 2; i < n; i++) { if (are_connected({res.back()}, {i})) { res.push_back(i); } else { res.insert(res.begin(), i); } } return res; } vector<int> longest_trip(int n, int d) { if (d == 3) return sub1(n); if (d == 2) return sub2(n); return {}; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...