# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
28303 | 점수판에 아이디와 팀명이 같이 표기되니, 신중하게 적어주세요. (#68) | 1-Color Coloring (FXCUP2_coloring) | C++98 | 0 ms | 1124 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "coloring.h"
int next[101];
int prev[101];
int chk[101];
int n;
int findprev(int x) {
int f=1, r=n;
while (f<r) {
int m = (f + r + 1) / 2;
for (int i = f; i < m; i++) Color(i);
if(GetColor(x) == 0) r = m - 1;
else f = m;
}
return f;
}
void ColoringSame(int N){
n = N;
int x = 1;
chk[1] = 1;
for (int i = 1; i <= 28 && i < n; i++) {
prev[x] = findprev(x);
next[prev[x]] = x;
x = prev[x];
chk[x] = 1;
}
Color(1);
for (int i = 1; i <= N-28; i++) {
for (int j = 1; j <= N; j++) {
if (!chk[j]) Color(j);
}
}
while (x != 1) {
Color(x);
x = next[x];
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |