結果
問題 | No.277 根掘り葉掘り |
ユーザー | bal4u |
提出日時 | 2019-05-10 14:39:51 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 28 ms / 3,000 ms |
コード長 | 1,671 bytes |
コンパイル時間 | 195 ms |
コンパイル使用メモリ | 31,232 KB |
実行使用メモリ | 10,100 KB |
最終ジャッジ日時 | 2024-07-02 00:58:44 |
合計ジャッジ時間 | 1,519 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 28 ms
7,040 KB |
testcase_10 | AC | 14 ms
10,100 KB |
testcase_11 | AC | 20 ms
7,168 KB |
testcase_12 | AC | 19 ms
8,308 KB |
testcase_13 | AC | 23 ms
7,168 KB |
testcase_14 | AC | 21 ms
8,820 KB |
testcase_15 | AC | 23 ms
8,952 KB |
testcase_16 | AC | 22 ms
8,184 KB |
testcase_17 | AC | 22 ms
8,824 KB |
testcase_18 | AC | 21 ms
7,296 KB |
testcase_19 | AC | 22 ms
7,168 KB |
コンパイルメッセージ
main.c: In function 'in': main.c:9:14: warning: implicit declaration of function 'getchar_unlocked' [-Wimplicit-function-declaration] 9 | #define gc() getchar_unlocked() | ^~~~~~~~~~~~~~~~ main.c:17:24: note: in expansion of macro 'gc' 17 | int n = 0, c = gc(); | ^~ main.c: In function 'out': main.c:10:15: warning: implicit declaration of function 'putchar_unlocked' [-Wimplicit-function-declaration] 10 | #define pc(c) putchar_unlocked(c) | ^~~~~~~~~~~~~~~~ main.c:27:17: note: in expansion of macro 'pc' 27 | if (!n) pc('0'); | ^~
ソースコード
// yukicoder: No.277 根掘り葉掘り // 2019.5.10 bal4u #include <stdio.h> #include <stdlib.h> #include <string.h> #if 1 #define gc() getchar_unlocked() #define pc(c) putchar_unlocked(c) #else #define gc() getchar() #define pc(c) putchar(c) #endif int in() { int n = 0, c = gc(); do n = 10*n + (c & 0xf), c = gc(); while (c >= '0'); return n; } void out(int n) { int i; char ob[20]; if (!n) pc('0'); else { i = 0; while (n) ob[i++] = n%10 + '0', n/=10; while (i--) pc(ob[i]); } pc('\n'); } #define MAX 100003 #define INF 0x33 int N; int *to[MAX], hi[MAX]; int ans[MAX]; typedef struct { int node, par, h; } Q; Q q[4*MAX]; int top; void dfs() { int i, node, par, h; q[0].node = 0, q[0].par = -1, q[0].h = 0, top = 1; while (top) { node = q[--top].node, par = q[top].par, h = q[top].h; if (ans[node] <= h) continue; ans[node] = h; if (node && hi[node] == 1) { ans[node] = 0; if (ans[par] > 1) { q[top].node = par, q[top].par = node, q[top++].h = 1; } } else { for (i = 0; i < hi[node]; i++) { if (ans[to[node][i]] <= h+1) continue; q[top].node = to[node][i], q[top].par = node, q[top++].h = h+1; } } } } int main() { int i, x, y; int *memo, sz; N = in(); memo = malloc(sizeof(int)*2*N); sz = 0; for (i = 1; i < N; i++) { memo[sz++] = x = in()-1, memo[sz++] = y = in()-1; hi[x]++, hi[y]++; } for (i = 0; i < N; i++) if (hi[i]) { to[i] = malloc(sizeof(int)*hi[i]); } memset(hi, 0, sizeof(int)*N); i = 0; while (i < sz) { x = memo[i++], y = memo[i++]; to[x][hi[x]++] = y, to[y][hi[y]++] = x; } memset(ans, INF, sizeof(int)*N); dfs(); for (i = 0; i < N; i++) out(ans[i]); return 0; }