# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
267069 | ChrisT | Travelling Salesperson (CCO20_day2problem1) | C++17 | 1422 ms | 24612 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<bits/stdc++.h>
using namespace std;
using ll = long long;
using pii = pair<int,int>;
#define all(x) (x).begin(),(x).end()
const int MN = 2e3 + 5;
bool adj[MN][MN];
int main () { //REEEEEE IM SO STUPID
int n;
scanf ("%d",&n);
for (int i = 2; i <= n; i++) {
for (int j = 1; j < i; j++) {
char c; scanf (" %c",&c); adj[i][j] = adj[j][i] = c == 'R';
}
}
if (n == 2) return !printf ("2\n1 2\n2\n2 1\n");
if (n == 3) return !printf ("3\n1 2 3\n3\n2 1 3\n3\n3 1 2\n");
for (int st = 1; st <= n; st++) { //idk just go in some order :tm:
int ed = -1;
vector<vector<int>> conn(n+1);
for (int i = 1; i <= n; i++) if (i != st) {
if (~ed) {
if (conn[ed].empty()) {
conn[ed].push_back(i); conn[i].push_back(ed);
continue;
}
if (conn[ed].size() == 1) {
int other = conn[ed][0];
conn[ed].push_back(i); conn[i].push_back(ed);
conn[other].push_back(i); conn[i].push_back(other);
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |