# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
849310 | 42kangaroo | Rope (JOI17_rope) | C++17 | 1990 ms | 256872 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.
//
// Created by 42kangaroo on 11/09/2023.
//
#include "bits/stdc++.h"
using namespace std;
signed main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int n, c; cin >> n >> c;
vector<int> colorNum(c);
// count number of each color, and adjacent pairs of odd/even
// put these pairs into a vec<vec<int>>
vector<map<int,int>> adjO(c);
vector<map<int,int>> adjE(c);
int last = -1;
for (int i = 0; i < n; ++i) {
int a; cin >> a;
--a;
colorNum[a]++;
if (last != -1 && last != a) {
if (i%2) {adjO[last][a]++; adjO[a][last]++;}
else {adjE[last][a]++; adjE[a][last]++;}
}
last = a;
}
// and sort it afterwards by num
vector<int> o(c);
std::iota(o.begin(), o.end(),0);
# | 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... |