結果
問題 | No.1640 簡単な色塗り |
ユーザー | ygussany |
提出日時 | 2021-08-06 21:52:33 |
言語 | C (gcc 12.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,563 bytes |
コンパイル時間 | 1,159 ms |
コンパイル使用メモリ | 31,324 KB |
実行使用メモリ | 13,756 KB |
最終ジャッジ日時 | 2024-06-29 14:59:26 |
合計ジャッジ時間 | 5,443 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,756 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 27 ms
7,168 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
07_evil_01.txt | -- | - |
07_evil_02.txt | -- | - |
ソースコード
#include <stdio.h> typedef struct List { struct List *next; int v, id; } list; int main() { int i, N, M, u, w, deg[100001] = {}; list *adj[100001] = {}, e[200001], *p; scanf("%d", &N); for (i = 0; i < N; i++) { scanf("%d %d", &u, &w); e[i*2].v = w; e[i*2+1].v = u; e[i*2].id = i + 1; e[i*2+1].id = i + 1; e[i*2].next = adj[u]; e[i*2+1].next = adj[w]; adj[u] = &(e[i*2]); adj[w] = &(e[i*2+1]); deg[u]++; deg[w]++; } for (u = 1; u <= N; u++) if (deg[u] == 0) break; if (u <= N) { printf("No\n"); fflush(stdout); return 0; } int x, flag[100001] = {}, ans[100001] = {}, q[100001], head, tail = 0; for (u = 1; u <= N; u++) if (deg[u] == 1) q[tail++] = u; for (head = 0; head < tail; head++) { u = q[head]; for (p = adj[u]; p != NULL; p = p->next) { w = p->v; i = p->id; if (ans[i] == 0) { ans[i] = u; flag[u] = 1; deg[w]--; if (deg[w] == 1) q[tail++] = w; } } } if (tail < N) { for (x = 1; x <= N; x++) { if (deg[x] <= 1) continue; for (p = adj[x]; p != NULL; p = p->next) { u = p->v; i = p->id; if (ans[i] == 0) { ans[i] = x; flag[x] = 1; break; } } for (; u != x; u = w) { for (p = adj[u]; p != NULL; p = p->next) { w = p->v; i = p->id; if (ans[i] == 0) { ans[i] = u; flag[u] = 1; break; } } } } } for (u = 1; u <= N; u++) if (flag[u] == 0) break; if (u <= N) printf("No\n"); else { printf("Yes\n"); for (i = 1; i <= N; i++) printf("%d\n", ans[i]); } fflush(stdout); return 0; }