이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#define N 200000
#define M 200000
#define INF 0x3f3f3f3f
int min(int a, int b) { return a < b ? a : b; }
int max(int a, int b) { return a > b ? a : b; }
int ij[M * 2], eh[N][2], eo[N];
int solve1(int *aa, int n) {
int i, k;
i = 0, k = 0;
while (i < n) {
while (i < n && aa[i] == 1)
i++;
while (i < n && aa[i] == 0)
i++;
k++;
}
return k - 1;
}
int solve2(int *aa, int n) {
int i, k;
k = 0;
for (i = 0; i < n; i++)
if (aa[i] != aa[(i + 1) % n])
k++;
return max(k / 2, 1);
}
int main() {
static char visited[N];
static int aa[N];
int n, m, h, h_, i, i_, j, k, c, d, cnt, o;
scanf("%d%d", &n, &m);
k = 0, d = n;
for (h = 0; h < m; h++) {
scanf("%d%d", &i, &j), i--, j--;
if (i == -1)
k++;
else if (j != -1) {
ij[h << 1 | 0] = i, ij[h << 1 | 1] = j;
eh[i][eo[i]++] = h << 1 | 0, eh[j][eo[j]++] = h << 1 | 1;
if (i == j)
d--;
}
}
for (i = 0; i < n; i++)
if (eo[i] == 0)
k++;
cnt = d;
for (i = 0; i < n; i++)
if (eo[i] == 1 && !visited[i]) {
h_ = -1, i_ = i, m = 0;
do {
visited[i_] = 1;
for (o = eo[i_]; o--; ) {
h = eh[i_][o], j = ij[h ^ 1];
if (h != (h_ ^ 1)) {
aa[m++] = h & 1;
h_ = h, i_ = j;
break;
}
}
} while (eo[i_] != 1);
visited[i_] = 1;
c = solve1(aa, m);
if (k == 0 && c > 0) {
printf("-1\n");
return 0;
}
cnt += c, k++;
}
for (i = 0; i < n; i++)
if (eo[i] == 2 && !visited[i]) {
h_ = -1, i_ = i, m = 0;
do {
visited[i_] = 1;
for (o = eo[i_]; o--; ) {
h = eh[i_][o], j = ij[h ^ 1];
if (h != (h_ ^ 1)) {
aa[m++] = h & 1;
h_ = h, i_ = j;
break;
}
}
} while (i_ != i);
if (m == 1)
continue;
if (k == 0) {
printf("-1\n");
return 0;
}
c = solve2(aa, m);
if (k == 1 && c > 1) {
printf("-1\n");
return 0;
}
cnt += c;
}
printf("%d\n", cnt);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
Main.c: In function 'main':
Main.c:41:2: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
41 | scanf("%d%d", &n, &m);
| ^~~~~~~~~~~~~~~~~~~~~
Main.c:44:3: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
44 | scanf("%d%d", &i, &j), i--, j--;
| ^~~~~~~~~~~~~~~~~~~~~
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |