#include <bits/stdc++.h>
#define ios ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0)
#define file(s) if (fopen(s".in", "r")) freopen(s".in", "r", stdin), freopen(s".out", "w", stdout)
#define all(a) a.begin() , a.end()
#define F first
#define S second
using namespace std;
using ll = long long;
const ll N = 2e5+5 , inf = 2e9 + 7;
const ll INF = 1e18 , mod = 1e9+7;
bool are_connected(vector<int> A, vector<int> B);
vector<int> solve(int n, int d){
// for(int i = 1; i <= n; i++){
// for(int j = i+1; j <= n; j++){
// g[i]
// }
// }
vector<int> vec;
for(int i = 1; i <= n; i++){
vec.push_back(i-1);
}
return vec;
}
vector<int> longest_trip(int N, int D){
return solve(N,D);
}
# | 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... |