結果
問題 | No.1928 Make a Binary Tree |
ユーザー | ygussany |
提出日時 | 2022-05-06 22:06:28 |
言語 | C (gcc 12.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,641 bytes |
コンパイル時間 | 729 ms |
コンパイル使用メモリ | 32,128 KB |
実行使用メモリ | 23,768 KB |
最終ジャッジ日時 | 2024-07-05 23:21:17 |
合計ジャッジ時間 | 10,605 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
8,852 KB |
testcase_01 | AC | 3 ms
9,352 KB |
testcase_02 | AC | 3 ms
8,944 KB |
testcase_03 | AC | 3 ms
9,216 KB |
testcase_04 | AC | 3 ms
9,348 KB |
testcase_05 | AC | 3 ms
9,604 KB |
testcase_06 | AC | 3 ms
8,872 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 2 ms
8,996 KB |
testcase_11 | AC | 3 ms
9,220 KB |
testcase_12 | AC | 3 ms
8,896 KB |
testcase_13 | AC | 3 ms
9,604 KB |
testcase_14 | AC | 3 ms
8,944 KB |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | AC | 64 ms
21,980 KB |
testcase_36 | AC | 54 ms
19,552 KB |
testcase_37 | RE | - |
testcase_38 | AC | 2 ms
6,944 KB |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | AC | 55 ms
22,160 KB |
testcase_50 | AC | 121 ms
23,704 KB |
testcase_51 | AC | 115 ms
23,720 KB |
testcase_52 | AC | 122 ms
23,544 KB |
testcase_53 | AC | 111 ms
23,552 KB |
testcase_54 | AC | 113 ms
23,660 KB |
testcase_55 | AC | 56 ms
23,768 KB |
testcase_56 | RE | - |
testcase_57 | RE | - |
testcase_58 | RE | - |
testcase_59 | AC | 82 ms
23,688 KB |
ソースコード
#include <stdio.h> #include <stdlib.h> typedef struct Edge { struct Edge *next; int v; } edge; typedef struct { int key, id; } data; typedef struct { data *obj; int size, max_size; } max_heap; void push(max_heap* h, data x) { int i = ++(h->size), j = i >> 1; data tmp; h->obj[i] = x; while (j > 0) { if (h->obj[i].key > h->obj[j].key) { tmp = h->obj[j]; h->obj[j] = h->obj[i]; h->obj[i] = tmp; i = j; j >>= 1; } else break; } } data pop(max_heap* h) { int i = 1, j = 2; data output = h->obj[1], tmp; h->obj[1] = h->obj[(h->size)--]; while (j <= h->size) { if (j < h->size && h->obj[j^1].key > h->obj[j].key) j ^= 1; if (h->obj[j].key > h->obj[i].key) { tmp = h->obj[j]; h->obj[j] = h->obj[i]; h->obj[i] = tmp; i = j; j <<= 1; } else break; } return output; } int main() { int i, N, u, w, deg[200001] = {}; edge *adj[200001] = {}, e[400001], *p; scanf("%d", &N); if (N == 1) { printf("1\n"); fflush(stdout); return 0; } for (i = 0; i < N - 1; i++) { scanf("%d %d", &u, &w); e[i*2].v = w; e[i*2+1].v = u; 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]++; } int par[200001] = {}, q[200001], head, tail; par[1] = 1; q[0] = 1; for (head = 0, tail = 1; head < tail; head++) { u = q[head]; for (p = adj[u]; p != NULL; p = p->next) { w = p->v; if (par[w] == 0) { par[w] = u; q[tail++] = w; } } } int dp[200001]; max_heap h[200001]; data d; for (head--; head >= 0; head--) { u = q[head]; dp[u] = 1; h[u].max_size = deg[u]; h[u].size = 0; h[u].obj = (data*)malloc(sizeof(data) * (h[u].max_size + 1)); for (p = adj[u]; p != NULL; p = p->next) { w = p->v; if (w == par[u]) continue; d.key = dp[w]; d.id = w; push(&(h[u]), d); if (h[w].size == 0) continue; if (h[u].size >= h[w].size) { if (h[u].size + h[w].size > h[u].max_size) { h[u].max_size *= 2; h[u].obj = (data*)realloc(h[u].obj, sizeof(data) * (h[u].max_size + 1)); } while (h[w].size > 0) { d = pop(&(h[w])); push(&(h[u]), d); } free(h[w].obj); } else { if (h[u].size + h[w].size > h[w].max_size) { h[w].max_size *= 2; h[w].obj = (data*)realloc(h[w].obj, sizeof(data) * (h[w].max_size + 1)); } while (h[u].size > 0) { d = pop(&(h[u])); push(&(h[w]), d); } free(h[u].obj); h[u] = h[w]; } } if (h[u].size > 0) { d = pop(&(h[u])); dp[u] += d.key; } if (h[u].size > 0) { d = pop(&(h[u])); dp[u] += d.key; } } printf("%d\n", dp[1]); fflush(stdout); return 0; }