# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
108741 | tjd229 | 1-Color Coloring (FXCUP2_coloring) | C++14 | 3 ms | 384 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 "coloring.h"
#include <vector>
using namespace std;
bool in[101];
vector<int> v1, v2;
int paint = 0;
int find(int back, int &coin) {
if (v1.size() == 1 && v2.empty()) return v1[0];
else if (v2.size() == 1 && v1.empty()) return v2[0];
if (!coin) return -1;
for (auto x : v1) Color(x), ++paint;
int c = GetColor(back); --coin;
vector<int> *live = &v1, *erase = &v2;
if (c) live = &v2, erase = &v1;
erase->clear();
while (live->size() > erase->size()) {
erase->push_back(live->back());
live->pop_back();
}
return find(back, coin);
}
void ColoringSame(int N) {
int i;
int coin = 200;
vector<int> stk, v;
stk.push_back(1);
while (coin>6 && stk.size()!=N) { // N cond
int t = 1;
v1.clear(); v2.clear();
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |