# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1093928 | Trisanu_Das | Magic Show (APIO24_show) | C++17 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "Alice.h"
#include <bits/stdc++.h>
using namespace std;
vector<pair<int, int>> Alice() {
int n = 5000;
long long x = setN(n);
vector<pair<int, int>> edges;
for (int i = 1; i <= n; i++) {
if (i == x) continue;
edges.push_back({x, i});
}
return edges;
}